使用实体框架删除行

发布于 2024-08-22 09:29:41 字数 43 浏览 3 评论 0原文

我必须删除条件 fkey_id = 1 的模型的所有行 什么模式比较好?

I have to delete all rows of a model with condition fkey_id = 1
What 's the better mode?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

旧时光的容颜 2024-08-29 09:29:41

完全同意 Devart,批量删除/更新使用标准 SQL。

如果您使用 .NET 4.0,ObjectContext 有一些可直接调用的新方法。

尤其:

ObjectContext.ExecuteStoreCommand(string commandText, params object[] parameters)

Agree completely with Devart, for batch Deletes/Updates use standard SQL.

If you are using .NET 4.0 the ObjectContext has some new methods for calling directly.

In particular:

ObjectContext.ExecuteStoreCommand(string commandText, params object[] parameters)
梦里兽 2024-08-29 09:29:41

快速的方法是在纯 ADO.NET 或存储过程中使用批处理命令。
实体框架不支持批量执行和删除未附加到上下文的记录。
使用实体框架删除的常见方法是显式加载与 fkey_id == 1 关联的对象集合并调用删除方法。

The fast way is to use batch commands in pure ADO.NET or a stored procedure.
Entity Framework does not support batch execution and deleting the records not attached to context.
The common way to delete using Entity Framework is to explicitly load the collection of objects associated with the fkey_id == 1 and call the delete method.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文