Queryable::GroupJoin<TOuter, TInner, TKey, TResult> Method (IQueryable<TOuter>^, IEnumerable<TInner>^, Expression<Func<TOuter, TKey>^>^, Expression<Func<TInner, TKey>^>^, Expression<Func<TOuter, IEnumerable<TInner>^, TResult>^>^, IEqualityComparer<TKey>^)
Correlates the elements of two sequences based on key equality and groups the results. A specified IEqualityComparer<T> is used to compare keys.
Assembly: System.Core (in System.Core.dll)
public: generic<typename TOuter, typename TInner, typename TKey, typename TResult> [ExtensionAttribute] static IQueryable<TResult>^ GroupJoin( IQueryable<TOuter>^ outer, IEnumerable<TInner>^ inner, Expression<Func<TOuter, TKey>^>^ outerKeySelector, Expression<Func<TInner, TKey>^>^ innerKeySelector, Expression<Func<TOuter, IEnumerable<TInner>^, TResult>^>^ resultSelector, IEqualityComparer<TKey>^ comparer )
Parameters
- outer
-
Type:
System.Linq::IQueryable<TOuter>^
The first sequence to join.
- inner
-
Type:
System.Collections.Generic::IEnumerable<TInner>^
The sequence to join to the first sequence.
- outerKeySelector
-
Type:
System.Linq.Expressions::Expression<Func<TOuter, TKey>^>^
A function to extract the join key from each element of the first sequence.
- innerKeySelector
-
Type:
System.Linq.Expressions::Expression<Func<TInner, TKey>^>^
A function to extract the join key from each element of the second sequence.
- resultSelector
-
Type:
System.Linq.Expressions::Expression<Func<TOuter, IEnumerable<TInner>^, TResult>^>^
A function to create a result element from an element from the first sequence and a collection of matching elements from the second sequence.
- comparer
-
Type:
System.Collections.Generic::IEqualityComparer<TKey>^
A comparer to hash and compare keys.
Return Value
Type: System.Linq::IQueryable<TResult>^An IQueryable<T> that contains elements of type TResult obtained by performing a grouped join on two sequences.
Type Parameters
- TOuter
The type of the elements of the first sequence.
- TInner
The type of the elements of the second sequence.
- TKey
The type of the keys returned by the key selector functions.
- TResult
The type of the result elements.
| Exception | Condition |
|---|---|
| ArgumentNullException | outer or inner or outerKeySelector or innerKeySelector or resultSelector is null. |
This method has at least one parameter of type Expression<TDelegate> whose type argument is one of the Func<T, TResult> types. For these parameters, you can pass in a lambda expression and it will be compiled to an Expression<TDelegate>.
The GroupJoin<TOuter, TInner, TKey, TResult>(IQueryable<TOuter>^, IEnumerable<TInner>^, Expression<Func<TOuter, TKey>^>^, Expression<Func<TInner, TKey>^>^, Expression<Func<TOuter, IEnumerable<TInner>^, TResult>^>^, IEqualityComparer<TKey>^) method generates a MethodCallExpression that represents calling GroupJoin<TOuter, TInner, TKey, TResult>(IQueryable<TOuter>^, IEnumerable<TInner>^, Expression<Func<TOuter, TKey>^>^, Expression<Func<TInner, TKey>^>^, Expression<Func<TOuter, IEnumerable<TInner>^, TResult>^>^, IEqualityComparer<TKey>^) 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 outer parameter.
The query behavior that occurs as a result of executing an expression tree that represents calling GroupJoin<TOuter, TInner, TKey, TResult>(IQueryable<TOuter>^, IEnumerable<TInner>^, Expression<Func<TOuter, TKey>^>^, Expression<Func<TInner, TKey>^>^, Expression<Func<TOuter, IEnumerable<TInner>^, TResult>^>^, IEqualityComparer<TKey>^) depends on the implementation of the type of the outer parameter. The expected behavior is that the outerKeySelector and innerKeySelector functions are used to extract keys from outer and inner, respectively. These keys are compared for equality by using comparer. The outcome of the comparisons is used to match each element in outer with zero or more elements from inner. Then the resultSelector function is invoked to project a result object from each group of correlated elements.
Available since 8
.NET Framework
Available since 3.5
Portable Class Library
Supported in: portable .NET platforms
Silverlight
Available since 2.0
Windows Phone Silverlight
Available since 7.1
Windows Phone
Available since 8.1