EF4 ObjectContext.Attach 有问题吗?
如果我构造一个像 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
两种情况都有可能。区别在于您使用的是附加实例还是分离实例。
您可以创建对象,将其附加到上下文,对上下文说该对象已修改(附加将对象标记为未更改)并保存更改。
或者
您可以从上下文加载对象,修改对象,在同一上下文上保存更改(您不需要将其设置为已修改,因为对象上下文跟踪它加载的对象的更改)。
我在此处编写了这两种情况的示例< /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.