EF 4.1 DBContext AutoDetectChanges已启用

发布于 2024-11-28 12:39:49 字数 272 浏览 1 评论 0原文

好的。我已关闭 AutoDetectChangesEnabled,当我查询上下文、修改实体并尝试保存更改时,没有任何内容更新。我希望如此。

但是当我将实体标记为已修改时,我希望它会发生变化。

有什么想法吗?

我正在使用 UnitOfWork、存储库、服务模式。

如果我启用 AutoDetectChangesEnabled 那么一切都很好。

持久保存附加对象更改的标准方法是什么?

那么分离的物体呢?

提前致谢, 山姆

OK. I have turned off AutoDetectChangesEnabled, and when I query the context, modify an entity and attempt to save changes, nothing gets updated. I would expect that.

But when I mark the entity as modified, I would expect it to change.

Any ideas?

I am using the UnitOfWork, Repository, Service pattern.

If I enable AutoDetectChangesEnabled then all is fine.

What is the standard way to persist changes to attached objects?

What about detached objects?

Thanks in advance,
Sam

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

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

发布评论

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

评论(1

浅浅淡淡 2024-12-05 12:39:49

不仅跟踪实体,还跟踪关系。

ObjectContext.ObjectStateManager
      .ChangeRelationshipState(resolution, resolution.Message, r => r.Message, EntityState.Added);

It's not just entities what is tracked, but relations as well.

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