c# - 在 WinForms 中使用 EF6 更新导航属性的非 id 字段

标签 c# entity-framework-6 navigation-properties

当用户在修改对象的表单上时,我想更新对象导航属性的非 id 字段。我的一些“部门”表的字段是这样的......

Id
DirectorId (object of Employee table)
NoOfEmployees
Location

和Employee表的字段如下:

Id
Name
Post

现在,当用户看到部门表的修改时,我还会显示有关员工的核心信息(职位为“主管”),在其组合框中选择了当前主管,并在相应的文本框中显示所有相关信息等。作为一旦用户选择了不同的 Director,相关字段也会随之改变。

现在我想要的是,如果此时用户更改了主管的某些信息(例如姓名或年龄),更改应反射(reflect)在数据库中,而不是强制用户转到员工修改表并在那里进行更改。

我尝试了修改数据库对象的几个字段的简单方法,但是当要修改的对象是导航属性(如上所述)时,该方法不起作用。这是代码...

using (CompanyDBContext db = new CompanyDBContext() {
    int id = ((Department)cbDept.SelectedItem).Id;
    Department currentDept = db.Departments.Where(x => x.Id == id).First();

    Department newDept = new Department();
    newDept.Id = currentDept.Id;
    newDept.Employee.Id = (int)cbDir.SelectedValue; // --> has no effect;
    // raises NullRefException "Obj. ref. not set to an instance of an obj."
    .....;
    .....;
    db.Entry(currentDept).CurrentValues.SetValues(newDept);

    if (dirNameChanged) {
        var director = new Employee() {
            Id = currentDept.DirectorId,
            Name = tbDirName.Text.Trim()
        };
        db.Employees.Attach(director); // --> raises exception
        db.Entry(director).Property(x => x.Name).IsModified = true;
    }

    db.SaveChanges();
}

.Attach() 方法抛出 InvalidOperationException 异常说

Attaching an entity of type 'CompanyDatabase.Employee' failed because
another entity of the same type already has the same primary key value.
This can happen when using the 'Attach' method or setting the state of
an entity to 'Unchanged' or 'Modified' if any entities in the graph have
conflicting key values. This may be because some entities are new and have
not yet received database-generated key values. In this case use the 'Add'
method or the 'Added' entity state to track the graph and then set the state
of non-new entities to 'Unchanged' or 'Modified' as appropriate.

但是然后使用 Add() 方法也会引发类似的异常... 有解决办法吗?

附言部门对象正在改变。更改 Director 对象也很好,即如果用户为部门选择新的 Director。仅更改 Director(Employee)的非 id 字段会产生问题。

最佳答案

db.Employees.Attach(director); // --> raises exception

异常消息表明上下文已经包含(正在跟踪)具有相同 PK (Id == director.Id) 的 Employee 对象。因此,与其创建新对象 (new Employee()),不如使用现有对象(EF 使用 reference identity,即不允许两个不同的实体 具有相同 PK 的实例)。

这样做的标准方法是使用 Find 方法,该方法将返回具有该 PK 的当前跟踪对象或从数据库加载它。因此代码应该是这样的:

if (dirNameChanged)
{
    var director = db.Employess.Find(currentDept.DirectorId);
    director.Name = tbDirName.Text.Trim();
}

请注意,无需附加它或操纵实体/属性状态 - 返回的对象由上下文附加和跟踪,因此任何属性值更改都是自动确定的。

关于c# - 在 WinForms 中使用 EF6 更新导航属性的非 id 字段,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49422086/

相关文章:

c# - .NET CSV uploader 允许空值

c# - 如何在 Database.EnsureCreated() EF Xamarin.Forms 之后使用 Database.Migration()

asp.net-core - Entity Framework 核心 : How to test navigation propery loading when use in-memory datastore

c# - MVC - 如何检查用户名是否尚未被使用?

c# - 深度图像帧 Kinect V2

c# - Entity Framework : Mapping a db real to decimal? 无法将 System.Single 转换为 System.Double

c# - 带有 Entity Framework 6 的 Postgresql(数据库优先方法)

c# - Entity Framework - CF/FA - 在 POCO 中定义过滤的导航属性

c# - Entity Framework - 如何正确配置一对多关系导航属性

c# - 为什么条件运算符不能正确地允许使用 "null"来分配给可为 null 的类型?