Run Migration At Runtime

PHOTO EMBED

Thu May 16 2024 09:38:48 GMT+0000 (Coordinated Universal Time)

Saved by @Samarmhamed78

#Program.cs
var app = builder.Build();
using (var scope = app.Services.CreateScope())
{
    var services = scope.ServiceProvider;

    var context = services.GetRequiredService<ApplicationDbContext>();
    context.Database.Migrate();
}
content_copyCOPY