EF4 ObjectContext.Attach 有问题吗?

发布于 2024-10-19 04:09:12 字数 135 浏览 3 评论 0原文

如果我构造一个像 Category 这样的对象,将值分配给属性,其中一个是与数据库中的一行相同的 ID,并将其传递给 ObejctSet.Attach 方法并调用 Context 上的 SaveChanges,会吗?更新数据库中的该行?还是必须先检索实体?

If I construct an object like say, Category, assign the values to the properties, one being the ID that is the same as a row in the database and pass it to the ObejctSet.Attach method and call the SaveChanges on the Context, will it update that row in the database? Or does the entity have to be retrieved first?

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

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

发布评论

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

评论(1

朦胧时间 2024-10-26 04:09:12

两种情况都有可能。区别在于您使用的是附加实例还是分离实例。

您可以创建对象,将其附加到上下文,对上下文说该对象已修改(附加将对象标记为未更改)并保存更改。

或者

您可以从上下文加载对象,修改对象,在同一上下文上保存更改(您不需要将其设置为已修改,因为对象上下文跟踪它加载的对象的更改)。

我在此处编写了这两种情况的示例< /a>.

Both scenarios are possible. The difference is if you work with attached or detached instance.

You can create object, attach it to context, say to context that object is modified (attaching marks object as unchanged) and save changes.

Or

You can load object from context, modify object, save changes on the same context (you don't need to set it as modified because object context track changes for objects it loaded).

I wrote examples for both scenarios here.

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