Compute applyFunc on multiple sources
Namespace: Microsoft.Research.DryadLinqAssembly: Microsoft.Research.DryadLinq (in Microsoft.Research.DryadLinq.dll) Version: 0.1.1.0 (0.1.1.0)
Syntax
Parameters
- source
- Type: System.Linq IQueryable T1
The first input dataset
- otherSources
- Type: System.Linq IQueryable T1
Other input datasets
- applyFunc
- Type: System.Linq.Expressions Expression Func IEnumerable T1 , IEnumerable T2
The function to be applied to the input datasets
Type Parameters
- T1
- The type of the records of input
- T2
- The type of the records of output
Return Value
Type: IQueryable T2The result of computing applyFunc(source,pieces)
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type IQueryable T1 . 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