从linq到sql访问关联对象时遇到问题。 我有一篇文章和用户。每篇文章都有一个卖家(用户),每个用户都有很多文章。我通过协会解决了这个问题。
这是我的linq to sql类的样子:
这是协会:
以下是Article.Seller背后的代码:
[global::System.Data.Linq.Mapping.AssociationAttribute(Name="User_Article", Storage="_Seller", ThisKey="SellerID", OtherKey="ID", IsForeignKey=true)]
public User Seller
{
get
{
return this._Seller.Entity;
}
set
{
...
}
}
现在,当我想获得一篇文章的卖家时,我收到以下错误:
无法访问已处置的对象。对象名:'访问DataContext 在Dispose之后。'。
错误发生在卖家的获取中。
任何想法如何处理?
编辑:下面是使用DataContext的代码:
public static List<Article> Read()
{
using (uDataContext dbx = new uDataContext())
{
return dbx.Article.ToList();
}
}
该列表的用法如下:
List<Article> articles = ArticleDALC.Read();
foreach (Article article in articles)
{
// Exception appears here!
User seller = article.Seller;
....
}
答案 0 :(得分:16)
找到解决方案:
使用DataContext时,只需将DeferredLoadingEnabled
属性设置为false:
public static List<Article> Read()
{
using (uDataContext dbx = new uDataContext())
{
dbx.DeferredLoadingEnabled = false;
return dbx.Article.ToList();
}
}
答案 1 :(得分:4)
不要丢弃您的DataContext。
所有LINQ对象都与DataContext相关联。您可能正在访问创建DataContext的using
块之外的对象。