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

时间:2012-11-02 16:01:36

标签: database entity-framework

我可能措辞不好但在我的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);

此数据类型是必须始终位于数据库中的实际数据。是否有命令检查数据库是否存在,以便我可以运行该代码块。谢谢!

2 个答案:

答案 0 :(得分:17)

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();
}

答案 1 :(得分:1)

在Entity Framework Core中,其工作方式如下:

namespace Database
{
    using Microsoft.EntityFrameworkCore.Infrastructure;
    using Microsoft.EntityFrameworkCore.Storage;

    public partial class MyContextClass
    {
        /// <summary>
        /// Checks if database exists
        /// </summary>
        /// <returns></returns>
        public bool Exists()
        {
            return (this.Database.GetService<IDatabaseCreator>() as RelationalDatabaseCreator).Exists();
        }
    }
}

确保类名等于您的数据库上下文类名并且在相同的名称空间中。

像这样使用它:

var dbExists = (MyContextClass)db.Exists()

来源:StackOverflow Answer