我有三个 EntityFramework (4.3) 对象,一个成员、地址和一个状态。它们看起来像这样:
public class Member
{
public int Id { get; set; }
public virtual Address Address { get; set; }
/*other properties removed for brevity*/
}
public class Address
{
public int Id { get; set; }
public virtual State State { get; set; }
/*other properties removed for brevity*/
}
public class State
{
public int Id { get; set; }
public string Name { get; set; }
public string Abbreviation { get; set; }
public virtual ICollection<Address> Address { get; set; }
}
当我更新地址关系时,一切正常。请参见下面的代码:
[HttpPost]
public ActionResult Update(MemberUpdateModel model)
{
if (!ModelState.IsValid)
{
model.SetStateSelectList(_db, model.SelectedStateId);
return View(model);
}
_db.Entry(model.Member).State = EntityState.Modified;
_db.Entry(model.Member.Address).State = EntityState.Modified;
_db.SaveChanges(); // works
return RedirectToAction("Index");
}
然后我添加了地址/状态关系的更新,如下所示:
[HttpPost]
public ActionResult Update(MemberUpdateModel model)
{
if (!ModelState.IsValid)
{
model.SetStateSelectList(_db, model.SelectedStateId);
return View(model);
}
_db.Entry(model.Member).State = EntityState.Modified;
_db.Entry(model.Member.Address).State = EntityState.Modified;
// added for address/state relationship
var selectedState = _db.States.FirstOrDefault(q => q.Id == model.SelectedStateId);
model.Member.Address.State = selectedState;
_db.SaveChanges();
return RedirectToAction("Index");
}
当我们运行上面的代码时,我们得到以下错误:
Store update, insert, or delete statement affected an unexpected number of rows (0). Entities may have been modified or deleted since entities were loaded. Refresh ObjectStateManager entries.
Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.
Exception Details: System.Data.OptimisticConcurrencyException: Store update, insert, or delete statement affected an unexpected number of rows (0). Entities may have been modified or deleted since entities were loaded. Refresh ObjectStateManager entries.
我做错了什么导致这种行为?