问题: MVC3中的儿童模型集&实体框架4.1通过编辑操作在模型中正确更新,但值未保存在DB中。
概述: - 模型对象Person包含对象CaseRef - 人员属性更新将保存在db.SaveChanges()上的数据库中,但内部集合CaseRef属性更新未保存 - 输入HttpPost ActionResult Edit()后正确绑定/映射所有值,以便从表单提交(编辑视图)成功更新模型。
型号:
public class Person
{
public Person()
{
this.CaseRefs = new HashSet<CaseRef>();
}
// <...more properties here...>
public string Name { get; set; }
public int UserId {get; set}
public virtual ICollection<CaseRef> CaseRefs { get; set; }
}
public class CaseRef
{
// <...more properties here...>
public int DescId { get; set; }
public virtual Person Person { get; set; }
}
控制器 - 编辑(发布)
[HttpPost]
public ActionResult Edit(Person p)
{
if (ModelState.IsValid)
{
// NOTE: At this point all fields from Edit form have been saved to the model
// specifically the internal CaseRefs Collection value updates.
db.Entry(p).State = EntityState.Modified;
// This is saving changes to Person.Name but not saving changes to the updated
// values in CaseRefs collection
db.SaveChanges();
return RedirectToAction("Index");
}
答案 0 :(得分:6)
设置db.Entry(p).State = EntityState.Modified;
您只需将父实体设置为已修改。要修改导航属性,您必须将它们全部标记为已修改。
类似于:p.CaseRefs.ForEach(c => db.Entry(c).State = EntityState.Modified);