QueryableExtensionsMergeR Method

ScaleOut Software NamedCache API
Executes a user-supplied method that implements a pairwise merge on the result objects output from multiple invocations of the evalMethod from Invoke Overload.

Namespace:  Soss.Client
Assembly:  soss_namedcache (in soss_namedcache.dll) Version: 6.2.0.0
Syntax

public static R Merge<R>(
	this IQueryable<R> source,
	Func<R, R, R> mergeMethod
)

Parameters

source
Type: System.LinqIQueryableR
A sequence of results from an Invoke Overload method.
mergeMethod
Type: SystemFuncR, R, R
The user-supplied method that implements the merge operation.

Type Parameters

R
The type of the result object to mere.

Return Value

Type: R
The merged result object.

Usage Note

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