GroupJoin Method

Task Parallel System.Threading

Overload List

  NameDescription
GroupJoin<(Of <(TOuter, TInner, TKey, TResult>)>)(ParallelQuery<(Of <(TOuter>)>), IEnumerable<(Of <(TInner>)>), Func<(Of <(TOuter, TKey>)>), Func<(Of <(TInner, TKey>)>), Func<(Of <(TOuter, IEnumerable<(Of <(TInner>)>), TResult>)>)) Obsolete.
This GroupJoin overload should never be called. This method is marked as obsolete and always throws NotSupportedException when called.
GroupJoin<(Of <(TOuter, TInner, TKey, TResult>)>)(ParallelQuery<(Of <(TOuter>)>), ParallelQuery<(Of <(TInner>)>), Func<(Of <(TOuter, TKey>)>), Func<(Of <(TInner, TKey>)>), Func<(Of <(TOuter, IEnumerable<(Of <(TInner>)>), TResult>)>))
Correlates in parallel the elements of two sequences based on equality of keys and groups the results. The default equality comparer is used to compare keys.
GroupJoin<(Of <(TOuter, TInner, TKey, TResult>)>)(ParallelQuery<(Of <(TOuter>)>), IEnumerable<(Of <(TInner>)>), Func<(Of <(TOuter, TKey>)>), Func<(Of <(TInner, TKey>)>), Func<(Of <(TOuter, IEnumerable<(Of <(TInner>)>), TResult>)>), IEqualityComparer<(Of <(TKey>)>)) Obsolete.
This GroupJoin overload should never be called. This method is marked as obsolete and always throws NotSupportedException when called.
GroupJoin<(Of <(TOuter, TInner, TKey, TResult>)>)(ParallelQuery<(Of <(TOuter>)>), ParallelQuery<(Of <(TInner>)>), Func<(Of <(TOuter, TKey>)>), Func<(Of <(TInner, TKey>)>), Func<(Of <(TOuter, IEnumerable<(Of <(TInner>)>), TResult>)>), IEqualityComparer<(Of <(TKey>)>))
Correlates in parallel the elements of two sequences based on key equality and groups the results. A specified IEqualityComparer{T} is used to compare keys.

See Also