public PwaTestMigrationsDbContext CreateDbContext(string[] args) { PwaTestEfCoreEntityExtensionMappings.Configure(); var configuration = BuildConfiguration(); var builder = new DbContextOptionsBuilder <PwaTestMigrationsDbContext>() .UseSqlServer(configuration.GetConnectionString("Default")); return(new PwaTestMigrationsDbContext(builder.Options)); }
public override void PreConfigureServices(ServiceConfigurationContext context) { PwaTestEfCoreEntityExtensionMappings.Configure(); }