public NewCommDbContext CreateDbContext(string[] args) { var builder = new DbContextOptionsBuilder <NewCommDbContext>(); var configuration = AppConfigurations.Get(WebContentDirectoryFinder.CalculateContentRootFolder(), addUserSecrets: true); NewCommDbContextConfigurer.Configure(builder, configuration.GetConnectionString(DemoConsts.ConnectionStringNewCommDbContext)); return(new NewCommDbContext(builder.Options)); }
public override void PreInitialize() { Configuration.ReplaceService <IEfCoreTransactionStrategy, DbContextEfCoreTransactionStrategy>(DependencyLifeStyle.Transient); if (!SkipDbContextRegistration) { Configuration.Modules.AbpEfCore().AddDbContext <NewCommDbContext>(options => { NewCommDbContextConfigurer.Configure(options.DbContextOptions, options.ConnectionString); //if (options.ExistingConnection != null) //{ // NewCommDbContextConfigurer.Configure(options.DbContextOptions, options.ExistingConnection); //} //else //{ //} }); } }