using LINGYUN.Abp.Data.DbMigrator; using LINGYUN.Abp.Identity.EntityFrameworkCore; using LINGYUN.Abp.IdentityServer.EntityFrameworkCore; using LINGYUN.Abp.Saas.EntityFrameworkCore; using LINGYUN.Abp.WeChat; using Volo.Abp.Autofac; using Volo.Abp.Modularity; using Volo.Abp.PermissionManagement.EntityFrameworkCore; namespace LY.MicroService.IdentityServer.DbMigrator; [DependsOn( typeof(AbpSaasEntityFrameworkCoreModule), typeof(AbpIdentityEntityFrameworkCoreModule), typeof(AbpIdentityServerEntityFrameworkCoreModule), typeof(AbpPermissionManagementEntityFrameworkCoreModule), typeof(AbpWeChatModule), typeof(AbpDataDbMigratorModule), typeof(AbpAutofacModule) )] public partial class IdentityServerDbMigratorModule : AbpModule { public override void ConfigureServices(ServiceConfigurationContext context) { ConfigureDbContext(context.Services); } }