4 instantiations of SelectManyQueryOperator
System.Core (4)
System\Linq\ParallelEnumerable.cs (4)
1004return new SelectManyQueryOperator<TSource, TResult, TResult>(source, selector, null, null); 1027return new SelectManyQueryOperator<TSource, TResult, TResult>(source, null, selector, null); 1058return new SelectManyQueryOperator<TSource, TCollection, TResult>(source, collectionSelector, null, resultSelector); 1094return new SelectManyQueryOperator<TSource, TCollection, TResult>(source, null, collectionSelector, resultSelector);
4 references to SelectManyQueryOperator
System.Core (4)
System\Linq\Parallel\QueryOperators\Unary\SelectManyQueryOperator.cs (4)
240private readonly SelectManyQueryOperator<TLeftInput, TRightInput, TOutput> m_selectManyOperator; // The select many operator to use. 262SelectManyQueryOperator<TLeftInput, TRightInput, TOutput> selectManyOperator, 370private readonly SelectManyQueryOperator<TLeftInput, TRightInput, TOutput> m_selectManyOperator; // The select many operator to use. 392SelectManyQueryOperator<TLeftInput, TRightInput, TOutput> selectManyOperator,