20 references to RightChild
System.Core (20)
System\Linq\Parallel\QueryOperators\Binary\ExceptQueryOperator.cs (2)
51QueryResults<TInputOutput> rightChildResults = RightChild.Open(settings, false); 121IEnumerable<TInputOutput> wrappedRightChild = CancellableEnumerable.Wrap(RightChild.AsSequentialQuery(token), token);
System\Linq\Parallel\QueryOperators\Binary\GroupJoinQueryOperator.cs (2)
71QueryResults<TRightInput> rightResults = RightChild.Open(settings, false); 128IEnumerable<TRightInput> wrappedRightChild = CancellableEnumerable.Wrap(RightChild.AsSequentialQuery(token), token);
System\Linq\Parallel\QueryOperators\Binary\IntersectQueryOperator.cs (2)
53QueryResults<TInputOutput> rightChildResults = RightChild.Open(settings, false); 228IEnumerable<TInputOutput> wrappedRightChild = CancellableEnumerable.Wrap(RightChild.AsSequentialQuery(token), token);
System\Linq\Parallel\QueryOperators\Binary\JoinQueryOperator.cs (2)
127QueryResults<TRightInput> rightResults = RightChild.Open(settings, false); 139IEnumerable<TRightInput> wrappedRightChild = CancellableEnumerable.Wrap(RightChild.AsSequentialQuery(token), token);
System\Linq\Parallel\QueryOperators\Binary\UnionQueryOperator.cs (6)
40m_outputOrdered = LeftChild.OutputOrdered || RightChild.OutputOrdered; 55QueryResults<TInputOutput> rightChildResults = RightChild.Open(settings, false); 97if (RightChild.OutputOrdered) 127if (LeftChild.OutputOrdered || RightChild.OutputOrdered) 138leftHashStream[i], rightHashStream[i], LeftChild.OutputOrdered, RightChild.OutputOrdered, 167IEnumerable<TInputOutput> wrappedRightChild = CancellableEnumerable.Wrap(RightChild.AsSequentialQuery(token), token);
System\Linq\Parallel\QueryOperators\Unary\ConcatQueryOperator.cs (6)
48m_outputOrdered = LeftChild.OutputOrdered || RightChild.OutputOrdered; 51m_prematureMergeRight = RightChild.OrdinalIndexState.IsWorseThan(OrdinalIndexState.Increasing); 54&& (RightChild.OrdinalIndexState == OrdinalIndexState.Indexible)) 62ExchangeUtilities.Worse(LeftChild.OrdinalIndexState, RightChild.OrdinalIndexState))); 75QueryResults<TSource> rightChildResults = RightChild.Open(settings, preferStriping); 144return LeftChild.AsSequentialQuery(token).Concat(RightChild.AsSequentialQuery(token));