DryadLinqQueryableApplyT1, T2, T3 Method (IQueryableT1, IQueryableT2, ExpressionFuncIEnumerableT1, IEnumerableT2, IEnumerableT3)DryadLINQ documentation
Compute applyFunc(source1, source2)

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<T3> Apply<T1, T2, T3>(
	this IQueryable<T1> source1,
	IQueryable<T2> source2,
	Expression<Func<IEnumerable<T1>, IEnumerable<T2>, IEnumerable<T3>>> applyFunc
)

Parameters

source1
Type: System.LinqIQueryableT1
The first input dataset
source2
Type: System.LinqIQueryableT2
The second input dataset
applyFunc
Type: System.Linq.ExpressionsExpressionFuncIEnumerableT1, IEnumerableT2, IEnumerableT3
The function to be applied to the input datasets

Type Parameters

T1
The type of the records of the first input dataset
T2
The type of the records of the second input dataset
T3
he type of the records of the output dataset

Return Value

Type: IQueryableT3
The result of computing applyFunc(source1, source2)

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type IQueryableT1. 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

Reference