gpt4 book ai didi

entity-framework - EntityCollection Clear() 和 Remove() 方法

转载 作者:行者123 更新时间:2023-12-03 23:20:23 25 4
gpt4 key购买 nike

删除 EF 实体的所有集合项的正确方法是什么?在下面的代码中,DocumentItems 是文档的相关文档项的集合。此代码在 Clear() 上继续执行,但在 SaveChanges() 上失败,因为相关项目通过 FK 连接到其文档,并且 FK 是强制性的。所以我猜他们在 Clear() 之后以某种方式在没有外键的情况下仍然漂浮在空中。

我是通过对每个项目调用 Remove() 的集合的 foreach 循环来解决这个问题还是有其他方法?

// remove existing document items to prepare for refreshing them
existing.DocumentItems.Clear();
// adds new Document Items
PrepareInvoice(existing, collection);
_repository.SaveChanges();

最佳答案

这是删除集合中项目的一种方法。

VB

TEntityCollection.ToList().ForEach(Sub(o) ctx.DeleteObject(o))

C#
TEntityCollection.ToList().ForEach(x => ctx.DeleteObject(x))

然后你需要打电话
ctx.SaveChanges()

关于entity-framework - EntityCollection Clear() 和 Remove() 方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3875439/

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