Transforms each element of a sequence into an IEnumerable{T} by applying a function to the
element and its index, and then flattens the resulting sequences into one sequence.
Namespace: Microsoft.Research.DryadLinq
Assembly: Microsoft.Research.DryadLinq (in Microsoft.Research.DryadLinq.dll) Version: 0.2.1.0 (0.2.1.0)
Syntax
public static IQueryable<TResult> LongSelectMany<TSource, TResult>( this IQueryable<TSource> source, Expression<Func<TSource, long, IEnumerable<TResult>>> selector )
Parameters
- source
- Type: System.LinqIQueryableTSource
The sequence of input elements - selector
- Type: System.Linq.ExpressionsExpressionFuncTSource, Int64, IEnumerableTResult
A transform function to apply to each source element; the second parameter of the function represents the index of the source element.
Type Parameters
- TSource
- The type of the elements of source
- TResult
- The type of the elements of the result
Return Value
Type: IQueryableTResultThe sequence resulting from applying the function on each input element and flattening the results
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type IQueryableTSource. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).See Also