Queryable::Zip<TFirst, TSecond, TResult> Method
Merges two sequences by using the specified predicate function.
Assembly: System.Core (in System.Core.dll)
[ExtensionAttribute] public: generic<typename TFirst, typename TSecond, typename TResult> static IQueryable<TResult>^ Zip( IQueryable<TFirst>^ source1, IEnumerable<TSecond>^ source2, Expression<Func<TFirst, TSecond, TResult>^>^ resultSelector )
Type Parameters
- TFirst
The type of the elements of the first input sequence.
- TSecond
The type of the elements of the second input sequence.
- TResult
The type of the elements of the result sequence.
Parameters
- source1
- Type: System.Linq::IQueryable<TFirst>
The first sequence to merge.
- source2
- Type: System.Collections.Generic::IEnumerable<TSecond>
The second sequence to merge.
- resultSelector
- Type: System.Linq.Expressions::Expression<Func<TFirst, TSecond, TResult>>
A function that specifies how to merge the elements from the two sequences.
Return Value
Type: System.Linq::IQueryable<TResult>An IQueryable<T> that contains merged elements of two input sequences.
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type IQueryable<TFirst>. 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).| Exception | Condition |
|---|---|
| ArgumentNullException | source1or source2 is nullptr. |
The Zip<TFirst, TSecond, TResult> method generates a MethodCallExpression that represents calling Zip<TFirst, TSecond, TResult> itself as a constructed generic method. It then passes the MethodCallExpression to the CreateQuery<TElement>(Expression) method of the IQueryProvider represented by the Provider property of the source1 parameter.
The method merges each element of the first sequence with an element that has the same index in the second sequence. If the sequences do not have the same number of elements, the method merges sequences until it reaches the end of one of them. For example, if one sequence has three elements and the other one has four, the resulting sequence will have only three elements.
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.