| Name | Description |
---|
  | RightJoin<TSource, TKey, TResult>(IEnumerable<TSource>, IEnumerable<TSource>, Func<TSource, TKey>, Func<TSource, TResult>, Func<TSource, TSource, TResult>) |
Performs a right outer join on two homogeneous sequences.
Additional arguments specify key selection functions and result
projection functions.
|
  | RightJoin<TFirst, TSecond, TKey, TResult>(IEnumerable<TFirst>, IEnumerable<TSecond>, Func<TFirst, TKey>, Func<TSecond, TKey>, Func<TSecond, TResult>, Func<TFirst, TSecond, TResult>) |
Performs a right outer join on two heterogeneous sequences.
Additional arguments specify key selection functions and result
projection functions.
|
  | RightJoin<TSource, TKey, TResult>(IEnumerable<TSource>, IEnumerable<TSource>, Func<TSource, TKey>, Func<TSource, TResult>, Func<TSource, TSource, TResult>, IEqualityComparer<TKey>) |
Performs a right outer join on two homogeneous sequences.
Additional arguments specify key selection functions, result
projection functions and a key comparer.
|
  | RightJoin<TFirst, TSecond, TKey, TResult>(IEnumerable<TFirst>, IEnumerable<TSecond>, Func<TFirst, TKey>, Func<TSecond, TKey>, Func<TSecond, TResult>, Func<TFirst, TSecond, TResult>, IEqualityComparer<TKey>) |
Performs a right outer join on two heterogeneous sequences.
Additional arguments specify key selection functions, result
projection functions and a key comparer.
|