7 references to BinaryQueryOperatorResults
System.Linq.Parallel (7)
System\Linq\Parallel\QueryOperators\Binary\ConcatQueryOperator.cs (2)
246
return new
BinaryQueryOperatorResults
(
255
:
base
(leftChildQueryResults, rightChildQueryResults, concatOp, settings, preferStriping)
System\Linq\Parallel\QueryOperators\Binary\ExceptQueryOperator.cs (1)
49
return new
BinaryQueryOperatorResults
(leftChildResults, rightChildResults, this, settings, false);
System\Linq\Parallel\QueryOperators\Binary\GroupJoinQueryOperator.cs (1)
68
return new
BinaryQueryOperatorResults
(leftResults, rightResults, this, settings, false);
System\Linq\Parallel\QueryOperators\Binary\IntersectQueryOperator.cs (1)
51
return new
BinaryQueryOperatorResults
(leftChildResults, rightChildResults, this, settings, false);
System\Linq\Parallel\QueryOperators\Binary\JoinQueryOperator.cs (1)
161
return new
BinaryQueryOperatorResults
(leftResults, rightResults, this, settings, false);
System\Linq\Parallel\QueryOperators\Binary\UnionQueryOperator.cs (1)
53
return new
BinaryQueryOperatorResults
(leftChildResults, rightChildResults, this, settings, false);