- namespace Diligent.WebAPI.Data.Extensions;
-
- public static class ServiceScope
- {
- public static void SetupData(this IServiceScope scope)
- {
- var dbContext = scope.ServiceProvider.GetRequiredService<DatabaseContext>();
-
- if (dbContext.Database.GetPendingMigrations().Any())
- {
- dbContext.Database.Migrate();
- }
- }
- }
|