4 instantiations of SelectManyQueryOperator
System.Linq.Parallel (4)
System\Linq\ParallelEnumerable.cs (4)
947return new SelectManyQueryOperator<TSource, TResult, TResult>(source, selector, null, null); 970return new SelectManyQueryOperator<TSource, TResult, TResult>(source, null, selector, null); 1001return new SelectManyQueryOperator<TSource, TCollection, TResult>(source, collectionSelector, null, resultSelector); 1037return new SelectManyQueryOperator<TSource, TCollection, TResult>(source, null, collectionSelector, resultSelector);
4 references to SelectManyQueryOperator
System.Linq.Parallel (4)
System\Linq\Parallel\QueryOperators\Unary\SelectManyQueryOperator.cs (4)
236private readonly SelectManyQueryOperator<TLeftInput, TRightInput, TOutput> _selectManyOperator; // The select many operator to use. 258SelectManyQueryOperator<TLeftInput, TRightInput, TOutput> selectManyOperator, 365private readonly SelectManyQueryOperator<TLeftInput, TRightInput, TOutput> _selectManyOperator; // The select many operator to use. 387SelectManyQueryOperator<TLeftInput, TRightInput, TOutput> selectManyOperator,