我将一些EF实体保存在我写的缓存层中。
当我从缓存中检索它们时,我有时会得到“contextObject was dispos”错误。
会用这个可以解决问题吗?
if (maMDBEntities.Entry(group).State == EntityState.Detached)
{
maMDBEntities.Groups.Attach(group);
}
return group;
如果没有 - 什么能解决我的错误?
Include()
?
group
嵌套了对其中实体的引用(几个级别)