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