public LDIDbContext CreateDbContext(string[] args) { var builder = new DbContextOptionsBuilder <LDIDbContext>(); var configuration = AppConfigurations.Get( WebContentDirectoryFinder.CalculateContentRootFolder(), addUserSecrets: true ); LDIDbContextConfigurer.Configure(builder, configuration.GetConnectionString(LDIConsts.ConnectionStringName)); return(new LDIDbContext(builder.Options)); }
public override void PreInitialize() { if (!SkipDbContextRegistration) { Configuration.Modules.AbpEfCore().AddDbContext <LDIDbContext>(options => { if (options.ExistingConnection != null) { LDIDbContextConfigurer.Configure(options.DbContextOptions, options.ExistingConnection); } else { LDIDbContextConfigurer.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("LDIEntities", EntityHistoryHelper.TrackedTypes); // Configuration.CustomConfigProviders.Add(new EntityHistoryConfigProvider(Configuration)); }