1 type derived from BinaryQueryOperatorResults
System.Linq.Parallel (1)
System\Linq\Parallel\QueryOperators\Binary\ConcatQueryOperator.cs (1)
229
private sealed class ConcatQueryOperatorResults :
BinaryQueryOperatorResults
6 instantiations of BinaryQueryOperatorResults
System.Linq.Parallel (6)
System\Linq\Parallel\QueryOperators\Binary\ConcatQueryOperator.cs (1)
246
return new
BinaryQueryOperatorResults
(
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);
2 references to BinaryQueryOperatorResults
System.Linq.Parallel (2)
System\Linq\Parallel\QueryOperators\BinaryQueryOperator.cs (2)
140
private readonly
BinaryQueryOperatorResults
_results;
144
internal LeftChildResultsRecipient(IPartitionedStreamRecipient<TOutput> outputRecipient,
BinaryQueryOperatorResults
results,