使用实体框架删除行
我必须删除条件 fkey_id = 1 的模型的所有行 什么模式比较好?
I have to delete all rows of a model with condition fkey_id = 1
What 's the better mode?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
我必须删除条件 fkey_id = 1 的模型的所有行 什么模式比较好?
I have to delete all rows of a model with condition fkey_id = 1
What 's the better mode?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(2)
完全同意 Devart,批量删除/更新使用标准 SQL。
如果您使用 .NET 4.0,ObjectContext 有一些可直接调用的新方法。
尤其:
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:
快速的方法是在纯 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.