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