运行我的代码要求我执行代码迁移以更新数据库时发生运行时错误。我不知道怎么做,有人可以帮帮我吗?
支持'ApplicationDbContext'上下文的模型已经改变了 数据库已创建。考虑使用Code First Migrations 更新数据库
答案 0 :(得分:3)
您必须在上下文配置文件中启用自动迁移
internal class Configuration : DbMigrationsConfiguration<YourContext>
{
public Configuration()
{
this.AutomaticMigrationsEnabled = true;
this.AutomaticMigrationDataLossAllowed = false;
}