EF 4.1 DBContext AutoDetectChanges已启用
好的。我已关闭 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不仅跟踪实体,还跟踪关系。
It's not just entities what is tracked, but relations as well.