如何在启动应用程序时自动更新数据库?

时间:2015-06-13 19:57:56

标签: c# .net asp.net-mvc asp.net-mvc-5

运行我的代码要求我执行代码迁移以更新数据库时发生运行时错误。我不知道怎么做,有人可以帮帮我吗?

  

支持'ApplicationDbContext'上下文的模型已经改变了   数据库已创建。考虑使用Code First Migrations   更新数据库

1 个答案:

答案 0 :(得分:3)

您必须在上下文配置文件中启用自动迁移

internal class Configuration : DbMigrationsConfiguration<YourContext>
{
    public Configuration()
    {
        this.AutomaticMigrationsEnabled = true;
        this.AutomaticMigrationDataLossAllowed = false;
    }