删除未显示在其他 DomainContext 实例上
我有同一个 DomainContext 的两个实例。当我向一个实体添加实体、提交更改,然后在另一个实体上重新加载时,新实体将显示在集合中。然而,删除却不会发生同样的情况。即使再次调用 Load 后,已删除的对象仍然位于第二个 DomainContext 的 EntitySet 中。这是怎么回事?
I have two instances of the same DomainContext. When I add an entity to one, submit changes, then do a reload on the other, the new entity shows up in the collection. However, the same doesn't happen with Delete. The deleted object is still in the second DomainContext's EntitySet even after calling Load again. Whats going on?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我遵循 这篇文章 它解决了这个问题。基本上需要的是从域上下文中删除加载操作未加载的任何实体。
I followed this post and it fixed the problem. Basically what is required is to remove any entities from the domain context that the load operation does not load.