加载嵌入式实体时发生E​​ntityCommandExecutionException

时间:2013-03-28 08:16:38

标签: c# sql-server database entity-framework

我有一个代码可以从我的数据库中获取所有产品:

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,
            },
        };
    }

它在我的colleaugue的机器上工作正常。但是我得到了EntityCommandExecutionException以及下面的内部异常:在尝试访问product.KeyPair时,已经有一个与此命令关联的开放DataReader必须先关闭。

有趣的是,如果我通过调试器刷新product.KeyPair - 它加载正常。

1 个答案:

答案 0 :(得分:1)

添加

MultipleActiveResultSets=true

到实体框架连接字符串中的连接字符串的提供者部分(即定义数据源,初始目录等的部分)