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