5 references to SortQueryOperator
System.Core (5)
System\Linq\Parallel\QueryOperators\Unary\SortQueryOperator.cs (1)
79return new SortQueryOperator<TInputOutput, Pair<TSortKey, TKey2>>(Child, pairKeySelector, pairComparer, false);
System\Linq\ParallelEnumerable.cs (4)
1128new SortQueryOperator<TSource, TKey>(source, keySelector, null, false)); 1156new SortQueryOperator<TSource, TKey>(source, keySelector, comparer, false)); 1182return new OrderedParallelQuery<TSource>(new SortQueryOperator<TSource, TKey>(source, keySelector, null, true)); 1210new SortQueryOperator<TSource, TKey>(source, keySelector, comparer, true));