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