类型';System.InvalidOperationException';在EntityFramework

本文关键字:EntityFramework System 类型 InvalidOperationException | 更新日期: 2023-09-27 17:58:47

我正在尝试制作部门名称的下拉列表。我正在使用MVC5。我看到了太多关于堆栈溢出的解决方案,但我从未找到与MVC5相关的有价值的解决方案。

Database Name : AppraisalDBContext
Table Name :  Department
Column Name : deptID (Primarykey)
              deptName (department name)
              Description 

我得到这个错误:

An exception of type 'System.InvalidOperationException' occurred in  EntityFramework.dll but was not handled in user code
Additional information: The model backing the 'AppraisalDBContext' context has changed since the database was created.Consider using Code First Migrations to update the database (http://go.microsoft.com/fwlink/?

代码:

控制器类名称(DepartmentController.cs):

public ActionResult Index(string depName)
{
    var DeptLst = new List<string>();          
    var GenreQry = from d in db.Department
                   orderby d.deptName
                   select d.deptName;
    DeptLst.AddRange(GenreQry);                // Here I am confusing
    ViewBag.depName = new SelectList(DeptLst); // Here I am confusing
    var depts = from m in db.Department        // Here I am confusing
                select m;

    return View(depts);
}

型号类别名称(Departments.cs):

namespace appraisalProject.Models
{
    [Table("Department")]
    public class Departments
    {
        [Key]
        public int deptId { get; set; }
        public string deptName { get; set; }
        public string Description { get; set; }
     }
}

模型类名(AppraisalDBContext.cs):

namespace appraisalProject.Models
{
    public class AppraisalDBContext:DbContext
    {
        public DbSet<Departments> Department { get; set; }
    }
}

Index.chtml:

@using (Html.BeginForm())
{
<p>
    Genre: @Html.DropDownList("depts", "All")
    <input type="submit" value="Filter" />
</p>
}

类型';System.InvalidOperationException';在EntityFramework

错误消息详细说明了您需要知道的所有信息:

附加信息:自创建数据库以来,支持"AppraisalDBContext"上下文的模型已更改。考虑使用代码优先迁移来更新数据库(http://go.microsoft.com/fwlink/?

这意味着AppraisalDBContext中使用的一个类已经更改,但数据库尚未更新,因此现在已经过时。您需要使用"代码优先"迁移对此进行更新。

这是一篇很好的博客文章,带你了解整个过程。

lan的回答帮助了我。问题是,我已经更新了模型类,但数据库仍然有旧的定义。我认为初始化程序ClearDatabaseSchemaIfModelChanges<>应该在新调用时重置数据库,这是我在msdn上读到的。事实证明,初始值设定项没有被调用。所以我手动删除了数据库:

new MyDbContext().Database.Delete();

在WebApiConfig的register()方法中。

之后,在下次启动时调用初始值设定项,并更新数据库模式。