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