如何生成包含非托管对象的 ObjectSet 副本?
我想获取 ObjectSet 的所有数据(类似于 getAllProducts()),但该数据只能读取,因此如果有人使用从该集合中获取的对象,他只会修改集合中的对象,而不修改 ObjectContext 管理的对象或持久化引擎中的数据。
我读到分离会停止上下文以维护跟踪信息。另外,我了解到分离会消耗大量系统资源。
我能做些什么?我想要一份收藏的副本。
I want to get all the data of an ObjectSet (something like getAllProducts()) but this data should only be read, so if somebody uses an object taken from that collection, he modifies only the objects on the collection and not ObjectContext managed objecs or data at persistence engine.
I've read that detach stops the context to maintain tracking info. Also, I've read that detaching can consume a lot of system resources.
What can I do? I want a copy of a collection.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您是对的 - ObjectContext.Detach 从 ObjectStateManager 中删除对象。这实际上减少了内存的使用量。
分离对象时需要注意以下事项:
有关详细信息,请参阅此处。
布莱恩
You are correct - ObjectContext.Detach removes the object from the ObjectStateManager. This actually REDUCES the amount of memory used.
The following considerations apply when detaching objects:
See here for more info.
Brian