You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

16 lines
484 B

namespace WebAPIWithEF.Data
{
public static class Extensions
{
public static void CreateDbIfNotExists(this IHost host)
{
using (var scope = host.Services.CreateScope())
{
var services = scope.ServiceProvider;
var context = services.GetRequiredService<PizzaContext>();
context.Database.EnsureCreated();
DbInitializer.Initialize(context);
}
}
}
}