MongoQueryable.SelectMany Method |
Name | Description | |
---|---|---|
![]() ![]() | SelectMany<TSource, TResult>(IMongoQueryable<TSource>, Expression<Func<TSource, IEnumerable<TResult>>>) |
Projects each element of a sequence to an IEnumerable< T> and combines the resulting sequences into one sequence.
|
![]() ![]() | SelectMany<TSource, TCollection, TResult>(IMongoQueryable<TSource>, Expression<Func<TSource, IEnumerable<TCollection>>>, Expression<Func<TSource, TCollection, TResult>>) |
Projects each element of a sequence to an IEnumerable< T> and
invokes a result selector function on each element therein. The resulting values from
each intermediate sequence are combined into a single, one-dimensional sequence and returned.
|