我有一个从我的数据库中获取所有产品的代码:
using (var entities = new DataEntities())
{
var products = entities.Products.AsQueryable();
if (!string.IsNullOrEmpty(nameFilter))
{
products = products.Where(o => o.Name.Contains(nameFilter));
}
var result = products.Select(ProductBuilder.CreateProductDto);
return result.ToList();
}
CreateProductDto方法:
public static ProductDto CreateProductDto(this Product product)
{
return new ProductDto
{
Id = product.Id,
Name = product.Name,
IsEnabled = product.IsEnabled,
KeyPairDto = new KeyPairDto()
{
Id = product.KeyPair.Id,
EncryptedPrivateExponent = product.KeyPair.EncryptedPrivateExponent,
Modulus = product.KeyPair.Modulus,
PublicExponent = product.KeyPair.PublicExponent,
},
};
}
它在我同事的机器上运行良好。但是我得到 EntityCommandExecutionException 并带有以下内部异常:已经有一个打开的 DataReader 与此命令相关联,必须先关闭它。尝试访问时product.KeyPair
。
有趣的是,如果我product.KeyPair
通过调试器刷新 - 它加载得很好。