Click or drag to resize

RightJoinExtension Class

RightJoin extension.
Inheritance Hierarchy
System.Object
  MoreLinq.Extensions.RightJoinExtension

Namespace:  MoreLinq.Extensions
Assembly:  MoreLinq (in MoreLinq.dll) Version: 3.1.0+ce7250fcae16725db4e3607598b1d4d8cb19957f
Syntax
public static class RightJoinExtension
Methods
  NameDescription
Public methodStatic memberRightJoin<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.
Public methodStatic memberRightJoin<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.
Public methodStatic memberRightJoin<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.
Public methodStatic memberRightJoin<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.
Top
See Also