我有一个列表框,当我从此列表框中选择一个名为ListofKBrands1的项目时,我会收到以下错误消息:
ObjectContext实例已被释放,不能再用于需要连接的操作。
在代码隐藏中,出现此错误:
if (co.Company != null)
我的代码:
private void ListofKBrands1_SelectionChanged(object sender, SelectionChangedEventArgs e)
{
RSPDbContext c = new RSPDbContext();
if (ListofKBrands1.SelectedItem != null)
{
ListBoxItem item = ListofKBrands1.SelectedItem as ListBoxItem;
KBrand co = item.Tag as KBrand;
if (ListofKBrands1.SelectedItem != null)
txtNewKBrand.Text = co.Name;
else
txtNewKBrand.Text = "";
int count = 0;
if (co.Company != null)
{
foreach (string a in cbCompany.Items)
{
if (a == co.Company.Name)
cbCompany.SelectedIndex = count;
count++;
}
}
else
cbCompany.SelectedIndex = 0;
}
}
错误之前:
我的KBrand.cs:
public class KBrand {
[Key]
public int Id { get; set; }
public String Name { get; set; }
public virtual Company Company { get; set; }
public override string ToString() {
return Name;
}
}
company.cs:
public class Company
{
[Key]
public int Id { get; set; }
public String Name { get; set; }
public override string ToString() {
return Name;
}
}
如果所选KBrand的公司为空,则不会出现此错误。但如果所选KBrand的公司不为null,我会接受此错误。我可以修复此错误吗?提前谢谢。
答案 0 :(得分:19)
Company
应该是懒惰的。但是你的实体现在处于分离状态(加载KBrand
实体的上下文现在处理掉了。因此,当你试图访问Company
属性时,实体框架会尝试使用已处置的上下文来对服务器进行查询。你例外。
您需要将KBrand
实体附加到当前上下文才能启用lazy-loading
RSPDbContext c = new RSPDbContext();
KBrand co = item.Tag as KBrand;
c.KBrands.Attach(co);
// use co.Company
或者你需要使用eager loading来加载Company
。当你拿到物品时会发生这样的事情:
RSPDbContext db = new RSPDbContext();
var brands = db.KBrands.Include(b => b.Company).ToList();
// assign brands to listbox
答案 1 :(得分:1)
只是加入谢尔盖的观点,
而不是这个,
RSPDbContext db = new RSPDbContext();
var brands = db.KBrands.Include(b => b.Company).ToList();
// assign brands to listbox
这对我有用..
RSPDbContext db = new RSPDbContext();
var brands = db.KBrands.Include("Company").ToList();
// assign brands to listbox