gpt4 book ai didi

c# - 实体类型 Employee 不是当前上下文模型的一部分

转载 作者:行者123 更新时间:2023-12-02 17:37:51 28 4
gpt4 key购买 nike

我遇到了这个问题,我看了几个帖子,请回复我如何解决这个问题。下面是我的代码

Controller 类

在第三行我收到错误:

The entity type Employee is not part of the model for the currentcontext

public ActionResult Details(int id)
{
MvcApplication6.Models.EmployeeContext employeeContext = new MvcApplication6.Models.EmployeeContext();
MvcApplication6.Models.Employee employee = employeeContext.Employees.Single(x => x.Id == id);
return View(employee);
}

EmployeeContext 类

public class EmployeeContext : DbContext
{
public DbSet<Employee> Employees { get; set; }
}

模型类

namespace MvcApplication6.Models
{
[Table("tblEmployee")]
public class Employee
{
public int Id { get; set; }
public string Name { get; set; }
public string Gender { get; set; }
public string City { get; set; }
}
}

实体数据模型名称 Employee.edmx

最佳答案

如果您使用 Entity Framework 并从数据库生成模型,请获取“不属于模型的一部分”的实体并使用模型/实体图 (*.edmx) 查看它。右键单击,然后验证。接下来,保存并构建。

关于c# - 实体类型 Employee 不是当前上下文模型的一部分,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24507531/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com