实体框架和 ObjectContext.SaveChanges()

发布于 2024-12-10 04:59:46 字数 132 浏览 1 评论 0原文

在使用 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 技术交流群。

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

发布评论

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

评论(2

怪我入戏太深 2024-12-17 04:59:46

根据这个经过测试和验证的答案如何更新仅使用实体框架的一个字段? 仅更新的字段在 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.

心不设防 2024-12-17 04:59:46

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)

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