1 type derived from BinaryQueryOperatorResults
System.Core (1)
System\Linq\Parallel\QueryOperators\Unary\ConcatQueryOperator.cs (1)
234
class ConcatQueryOperatorResults :
BinaryQueryOperatorResults
6 instantiations of BinaryQueryOperatorResults
System.Core (6)
System\Linq\Parallel\QueryOperators\Binary\ExceptQueryOperator.cs (1)
53
return new
BinaryQueryOperatorResults
(leftChildResults, rightChildResults, this, settings, false);
System\Linq\Parallel\QueryOperators\Binary\GroupJoinQueryOperator.cs (1)
73
return new
BinaryQueryOperatorResults
(leftResults, rightResults, this, settings, false);
System\Linq\Parallel\QueryOperators\Binary\IntersectQueryOperator.cs (1)
55
return new
BinaryQueryOperatorResults
(leftChildResults, rightChildResults, this, settings, false);
System\Linq\Parallel\QueryOperators\Binary\JoinQueryOperator.cs (1)
129
return new
BinaryQueryOperatorResults
(leftResults, rightResults, this, settings, false);
System\Linq\Parallel\QueryOperators\Binary\UnionQueryOperator.cs (1)
57
return new
BinaryQueryOperatorResults
(leftChildResults, rightChildResults, this, settings, false);
System\Linq\Parallel\QueryOperators\Unary\ConcatQueryOperator.cs (1)
252
return new
BinaryQueryOperatorResults
(
2 references to BinaryQueryOperatorResults
System.Core (2)
System\Linq\Parallel\QueryOperators\BinaryQueryOperator.cs (2)
141
BinaryQueryOperatorResults
m_results;
145
internal LeftChildResultsRecipient(IPartitionedStreamRecipient<TOutput> outputRecipient,
BinaryQueryOperatorResults
results,