0

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

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通过调试器刷新 - 它加载得很好。

4

1 回答 1

1

添加

MultipleActiveResultSets=true

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

于 2013-03-28T08:31:17.313 回答