我在mvc应用程序中有实体模型。我有两张桌子:
引擎:ID,名称,零件
部分:Id,EngineId,名称,价格
这两个表之间存在一对多关系。
在视图中:
@model Engine
<input type="hidden" name="Id" value="@Model.Id" />
<input type="text" name="Name" value="@Model.Name" />
@for(var part in Model.Parts)
{
<input type="hidden" name="Parts.Index" value="@guide" />
<input type="hidden" name="Parts[@guide].Id" value="@part.Id" />
<input type="text" name="Parts[@guide].Name" value="@part.Name" />
<input type="text" name="Parts[@guide].Price" value="@part.Price" />
}
在控制器中:
public ActionResult Edit(int id)
{
var model = context.Engines.FirstOrDefault(x=>x.Id == id);
return View("Engine", model);
}
[HttpPost]
public ActionResult Edit(int id, FormCollection collection)
{
var model = context.Engines.FirstOrDefault(x=>x.Id == id);
UpdateModel(model);
context.SaveChanges();
}
我正在添加和删除部件。当我发布时,我在model.Parts中有部件列表。它们都添加了实体状态。我希望具有Id的所有部件具有EntityState.Modified,并且那些被删除的部件必须具有EntityState.Deleted,并且添加的对象应具有EntityState.Added。可能吗? (EF版本4.0)
答案 0 :(得分:1)
默认活页夹对EF状态一无所知。您可以为Engine类创建新的模型绑定器并手动设置状态。