是否有命令检查实体框架中是否存在数据库?

前端之家收集整理的这篇文章主要介绍了是否有命令检查实体框架中是否存在数据库?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我可能措辞不好但在我使用的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();
}
原文链接:https://www.f2er.com/mssql/83327.html

猜你在找的MsSQL相关文章