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