我有以下代码从客户表中检索数据
var customers= context.CustomerEntities.Include("Addresses").Select(Mapper.Map).ToList();
映射器函数,将实体对象映射到业务对象,它看起来像这样
internal static Customer Map(CustomerEntity entity)
{
if (entity == null)
return null;
return new Customer
{
Id = entity.Id,
Name = entity.Name,
Addresses = Map(entity.Addresses)
};
}
现在,上面的代码运行良好。
但是,当我尝试这样做时:
var customers= context.CustomerEntities.Select(Mapper.Map).ToList();
我收到错误消息:There is already an open DataReader associated with this Command which must be closed first
正在执行 Mapper 函数时。
现在我知道要解决这个问题,我必须multipleactiveresultsets=True
在我的连接字符串中进行设置。我试过了,它确实解决了我的问题。
但是,当我运行 SQL 分析器时,从实体框架查询所有客户也会自动检索所有地址,即使我不需要它们。
除了必须设置之外还有解决方法multipleactiveresultsets=True
吗?我不希望地址一直被延迟加载。