The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.
Queryable::GroupJoin Method
.NET Framework (current version)
Correlates the elements of two sequences based on key equality and groups the results.
Assembly: System.Core (in System.Core.dll)
| Name | Description | |
|---|---|---|
![]() ![]() | GroupJoin<TOuter, TInner, TKey, TResult>(IQueryable<TOuter>^, IEnumerable<TInner>^, Expression<Func<TOuter, TKey>^>^, Expression<Func<TInner, TKey>^>^, Expression<Func<TOuter, IEnumerable<TInner>^, TResult>^>^) | Correlates the elements of two sequences based on key equality and groups the results. The default equality comparer is used to compare keys. |
![]() ![]() | 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>^) | Correlates the elements of two sequences based on key equality and groups the results. A specified IEqualityComparer<T> is used to compare keys. |
Show:

