gpt4 book ai didi

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

转载 作者:太空宇宙 更新时间:2023-11-03 14:55:35 25 4
gpt4 key购买 nike

当用户在修改对象的表单上时,我想更新对象导航属性的非 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/

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