我对此感到沮丧,就像一天......请帮忙。
我有一个发票部分,我可以通过使用JQuery附加/删除DOM元素来动态添加新项目...我已经想出如何正确命名这些元素,以便它们因此正确地映射到模型并发送到action参数。
因此,假设我的控制器中有一个名为Edit with a Invram of Invoice
的动作[HttpPost]
public virtual ActionResult Edit(Invoice invoice) {
if (ModelState.IsValid) {
//code discussed below
}
return RedirectToAction("Index");
}
invoice参数包含我想要的所有数据。我对此没有任何问题。以下是对象模型。
public class Invoice
{
[Key]
public int ID { get; set; }
public InvoiceType InvoiceType { get; set; }
public string Description { get; set; }
public int Amount { get; set; }
public virtual ICollection<InvoiceItem> InvoiceItems { get; set; }
}
请注意 InvoiceItems 集合 - 它包含动态插入的发票项目的集合。以下是InvoiceItem模型
[Table("InvoiceItems")]
public class InvoiceItem
{
[Key]
public int ID { get; set; }
[ForeignKey("Invoice")]
public int InvoiceID { get; set; }
public Invoice Invoice { get; set; }
public string Description { get; set; }
public int Amount { get; set; }
}
这就是我被困住的地方。
我无法通过任何机会将Invoice集合InvoiceItems中的项目插入/更新到数据库中。我一直在谷歌搜索,我发现了这些解决方案 - 不幸的是,这些解决方案都没有。
解决方案#1 - 使用SetValues的一些奇怪的代码:
Invoice origInvoice = db.Invoices.Single(x => x.ID == invoice.ID);
var entry = db.Entry(origInvoice);
entry.OriginalValues.SetValues(invoice);
entry.CurrentValues.SetValues(invoice);
db.SaveChanges();
解决方案#2 - 为我的DbContext添加新的更新方法:
public void Update<T>(T entity) where T : class
{
this.Set<T>().Attach(entity);
base.ObjectContext.ObjectStateManager.ChangeObjectState(entity,System.Data.EntityState.Modified);
}
将现有但已修改的实体附加到上下文
db.Entry(invoice).State = EntityState.Modified;
db.SaveChanges();
解决方案#1如何工作:更新除新添加的InvoiceItems之外的所有属性。 SetValues()忽略ICollection属性。如果我在db.SaveChanges();
之前添加这一行,这将有效origEntry.Entity.InvoiceItems = invoice.InvoiceItems;
......但我不相信这是正确的做法。
解决方案#2如何工作:根本不起作用,因为DbContext类中没有ObjectContext属性。
解决方案#3如何运作:此解决方案将更新发票,但忽略InvoiceItems。
附加信息:以下是用于生成映射到InvoiceItem属性的item元素的javascript片段。
window.InvoiceItemIndex++;
var str = $.tmpl("itemRowTmpl", {
itemIndexes: '<input type="hidden" name="Invoice.InvoiceItems.Index" value="' + window.InvoiceItemIndex + '"/> \
<input type="hidden" name="Invoice.InvoiceItems[' + window.InvoiceItemIndex + '].ID" value="0"/>\
<input type="hidden" name="Invoice.InvoiceItems[' + window.InvoiceItemIndex + '].InvoiceID" value="@Model.Invoice.ID"/>',
itemDescription: '<textarea cols="150" name="Invoice.InvoiceItems[' + window.InvoiceItemIndex + '].Description" rows="2"></textarea>',
itemAmount: '<input type="text" class="InvoiceItemAmount" style="text-align:right;" name="Invoice.InvoiceItems[' + window.InvoiceItemIndex + '].Amount" />',
});
最后一个问题:我做错了什么?与另一个模型相关的新项目集合自动插入到数据库中有什么问题?当父模型成功更新时,为什么会被忽略?
编辑1:更正
答案 0 :(得分:6)
DbEntityEntry.CurrentValues.SetValues
仅更新标量和复杂属性。它不关心导航属性。这就是为什么InvoiceItems
集合中的更改不会写入数据库的原因。同样的问题是将Invoice
的状态设置为Modified
。这仅将标量和复杂属性标记为已修改但未标记任何导航属性。
不幸的是,EF不提供一种简单的方法,可以分析导航集合中的哪些项目与数据库中的原始状态相比已添加,删除或仅修改,如果在实体分离时已完成更改来自上下文(在您的示例中的网页上)。
这意味着您必须自己对数据库中的原始状态和新更改的状态进行比较。
代码示例如何执行此操作的答案如下:The relationship could not be changed because one or more of the foreign-key properties is non-nullable这些示例非常适合您的情况,只需将ParentItem
替换为Invoice
和ChildItems
InvoiceItems
。
您还可以在几天前查看此问题以获取更多信息:WCF, Entity Framework 4.1 and Entity's State实际上还有许多其他问题与缺乏对更新分离对象图的支持相关的问题(这是一个非常常见的场景)是实体框架中更令人不快的限制之一。
(注意:在MVC控制器中有UpdateModel
方法。我不确定这种方法是否能够更新完整的对象图(添加,删除和更改集合中的项目)。我不使用它,如果我使用它,那么就不用于使用DB模型,只是为了ViewModel更新。)