我有以下形式的 Linq to Entities 查询:
var x = from a in SomeData
where ... some conditions ...
select new MyType
{
Property = a.Property,
ChildCollection = from b in a.Children
select new MyChildType
{
SomeProperty = b.Property,
AnotherProperty = b.AnotherProperty
}
};
var y = from a in SomeData
where ... some other conditions ...
select new MyType
{
Property = a.Property,
ChildCollection = from b in a.Children
select new MyChildType
{
SomeProperty = b.Property,
AnotherProperty = b.AnotherProperty
}
};
var results = x.Concat(y);
(这是一个简化的示例 - 'where' 和 'select' 子句比此处显示的更复杂。我使用单独的查询语句,因为创建单个组合查询语句太复杂,条件太多并且需要很长时间才能编译)
编译正常,但执行失败,但有以下异常:
"The nested query is not supported. Operation1='UnionAll' Operation2='MultiStreamNest'
请注意,我正在尝试投影到嵌套类型的结构中。如果我在 Concat() 之前在 x 和 y 上调用 .ToList() 它工作正常。另外一点,我的属性之一是枚举,但我使用整数包装器属性分配给它。
有没有办法我可以做我想做的事而不必将所有数据拉入内存?或者是导致失败的枚举?
谢谢,
吨