public void SeedDebug(AppDbContext context)
{
Seed(context);
}
然后在我的 HomeController 中,我在 Debug 模式下调用这个方法。
public class HomeController : Controller
{
var appDb = new AppDbContext();
public ActionResult Index()
{
var config = new Configuration();
config.SeedDebug(appDb);
return View();
}
}