实体框架和 ObjectContext.SaveChanges()
在使用 ADO.NET 的数据表中,更新命令会更新整行。这意味着即使您更改 1 个单元格,该行的所有列也会更新...这并不总是问题。
然而,尽管阅读了 msdn,但我无法找到实体框架是否如此。更新属性会创建完整更新 SQL 查询还是仅针对列?
In datatables with ADO.NET an updatecommand updates full row.That means that even if you change 1 cell all collumns of the row would be updated... This is not the problem always.
However although reading from msdn i couldnt find whether this this true for Entity Framework. Updating a property would create a full update sql query or only for the column ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
根据这个经过测试和验证的答案如何更新仅使用实体框架的一个字段? 仅更新的字段在 sql 中更新,而不是整个对象。
According to this tested and verified answer How to update only one field using Entity Framework? only updated fields are updated in sql not the entire object.
Hasan 是正确的,仅更新更改的字段,这可以通过在 SQL Profiler(或等效工具)中跟踪 SQL 来轻松确认
Hasan is correct, only changed fields are updated and this is easy to confirm by tracing the SQL in the SQL Profiler (or equivalent tool)