public AbpZeroTemplateDbContext CreateDbContext(string[] args) { var builder = new DbContextOptionsBuilder <AbpZeroTemplateDbContext>(); var configuration = AppConfigurations.Get(WebContentDirectoryFinder.CalculateContentRootFolder(), addUserSecrets: true); AbpZeroTemplateDbContextConfigurer.Configure(builder, configuration.GetConnectionString(AbpZeroTemplateConsts.ConnectionStringName)); return(new AbpZeroTemplateDbContext(builder.Options)); }
public override void PreInitialize() { if (!SkipDbContextRegistration) { Configuration.Modules.AbpEfCore().AddDbContext <AbpZeroTemplateDbContext>(options => { if (options.ExistingConnection != null) { AbpZeroTemplateDbContextConfigurer.Configure(options.DbContextOptions, options.ExistingConnection); } else { AbpZeroTemplateDbContextConfigurer.Configure(options.DbContextOptions, options.ConnectionString); } }); } //Uncomment below line to write change logs for the entities below: //Configuration.EntityHistory.Selectors.Add("AbpZeroTemplateEntities", EntityHistoryHelper.TrackedTypes); //Configuration.CustomConfigProviders.Add(new EntityHistoryConfigProvider(Configuration)); }