7 references to BinaryQueryOperatorResults
System.Core (7)
System\Linq\Parallel\QueryOperators\Binary\ExceptQueryOperator.cs (1)
53return new BinaryQueryOperatorResults(leftChildResults, rightChildResults, this, settings, false);
System\Linq\Parallel\QueryOperators\Binary\GroupJoinQueryOperator.cs (1)
73return new BinaryQueryOperatorResults(leftResults, rightResults, this, settings, false);
System\Linq\Parallel\QueryOperators\Binary\IntersectQueryOperator.cs (1)
55return new BinaryQueryOperatorResults(leftChildResults, rightChildResults, this, settings, false);
System\Linq\Parallel\QueryOperators\Binary\JoinQueryOperator.cs (1)
129return new BinaryQueryOperatorResults(leftResults, rightResults, this, settings, false);
System\Linq\Parallel\QueryOperators\Binary\UnionQueryOperator.cs (1)
57return new BinaryQueryOperatorResults(leftChildResults, rightChildResults, this, settings, false);
System\Linq\Parallel\QueryOperators\Unary\ConcatQueryOperator.cs (2)
252return new BinaryQueryOperatorResults( 261: base(leftChildQueryResults, rightChildQueryResults, concatOp, settings, preferStriping)