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
Parameters
- source
- Type: System.Linq.IQueryable<R>
A sequence of results from an Invoke Overload method. - mergeMethod
- Type: System.Func<R, 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: RThe merged result object.
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type IQueryable<R>. 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