我可能措辞不好但在我使用的global.asx文件中
if (System.Diagnostics.Debugger.IsAttached) { var test = new TestDbSeeder(App_Start.NinjectWebCommon.UcxDbContext); test.seed(); }
这将检查调试器是否已连接并运行我的测试播种器,以便我的验收测试始终通过.
var test2 = new DataSeeder(); test2.Seed(App_Start.NinjectWebCommon.UcxDbContext);
解决方法
Database.Exists方法适合您吗?
if (!dbContext.Database.Exists()) dbContext.Database.Create();
编辑#1以回答评论
public class DatabaseBootstrapper { private readonly MyContext context; public DatabaseBootstrapper(MyContext context) { this.context = context; } public void Configure() { if (context.Database.Exists()) return; context.Database.Create(); var seeder = new Seeder(context); seeder.SeedDatabase(); } }
这应该完全符合你的要求.在你的global.asax文件中……
public void Application_Start() { var context = ...; // get your context somehow. new DatabaseBootstrapper(context).Configure(); }