using System;using System.Collections.Generic;
using System.Linq;
using System.Web;
using Microsoft.Extensions.DependencyInjection;
namespace MysecondTestMvc.Models
{
public static class SeedData
{
public static void Initialize(IServiceProvider serviceProvider)
{
var context = serviceProvider.GetService<ApplicationDbContext>() ; //if (context.Database == null) { throw new Exception("DB is null"); } //if (context.Movie.Any()) { return; // DB has been seeded }
}
}
}
برچسب:
نویسنده: خنج