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