1 out of 1 rated this helpful - Rate this topic

Enumerable.GroupJoin Method

Correlates the elements of two sequences based on key equality, and groups the results.

This member is overloaded. For complete information about this member, including syntax, usage, and examples, click a name in the overload list.

  Name Description
Public method Static member GroupJoin<TOuter, TInner, TKey, TResult>(IEnumerable<TOuter>, IEnumerable<TInner>, Func<TOuter, TKey>, Func<TInner, TKey>, Func<TOuter, IEnumerable<TInner>, TResult>) Correlates the elements of two sequences based on equality of keys and groups the results. The default equality comparer is used to compare keys.
Public method Static member GroupJoin<TOuter, TInner, TKey, TResult>(IEnumerable<TOuter>, IEnumerable<TInner>, Func<TOuter, TKey>, Func<TInner, TKey>, 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.
Top
Did you find this helpful?
(1500 characters remaining)
© 2013 Microsoft. All rights reserved.