public TestProjectDbContext CreateDbContext(string[] args) { var builder = new DbContextOptionsBuilder <TestProjectDbContext>(); var configuration = AppConfigurations.Get(WebContentDirectoryFinder.CalculateContentRootFolder()); TestProjectDbContextConfigurer.Configure(builder, configuration.GetConnectionString(TestProjectConsts.ConnectionStringName)); return(new TestProjectDbContext(builder.Options)); }
public override void PreInitialize() { if (!SkipDbContextRegistration) { Configuration.Modules.AbpEfCore().AddDbContext <TestProjectDbContext>(options => { if (options.ExistingConnection != null) { TestProjectDbContextConfigurer.Configure(options.DbContextOptions, options.ExistingConnection); } else { TestProjectDbContextConfigurer.Configure(options.DbContextOptions, options.ConnectionString); } }); } }