RightJoin extension.
Inheritance Hierarchy
Namespace:
MoreLinq.Extensions
Assembly:
MoreLinq (in MoreLinq.dll) Version: 3.1.0+ce7250fcae16725db4e3607598b1d4d8cb19957f
Syntaxpublic static class RightJoinExtension
<ExtensionAttribute>
Public NotInheritable Class RightJoinExtension
[ExtensionAttribute]
public ref class RightJoinExtension abstract sealed
[<AbstractClassAttribute>]
[<SealedAttribute>]
[<ExtensionAttribute>]
type RightJoinExtension = class end
Methods
| 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<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>) |
Performs a right outer join on two heterogeneous 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>, 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