Click or drag to resize

MoreEnumerable.LeftJoin Method

Overload List
  NameDescription
Public methodStatic memberLeftJoin<TSource, TKey, TResult>(IEnumerable<TSource>, IEnumerable<TSource>, Func<TSource, TKey>, Func<TSource, TResult>, Func<TSource, TSource, TResult>)
Performs a left outer join on two homogeneous sequences. Additional arguments specify key selection functions and result projection functions.
Public methodStatic memberLeftJoin<TFirst, TSecond, TKey, TResult>(IEnumerable<TFirst>, IEnumerable<TSecond>, Func<TFirst, TKey>, Func<TSecond, TKey>, Func<TFirst, TResult>, Func<TFirst, TSecond, TResult>)
Performs a left outer join on two heterogeneous sequences. Additional arguments specify key selection functions and result projection functions.
Public methodStatic memberLeftJoin<TSource, TKey, TResult>(IEnumerable<TSource>, IEnumerable<TSource>, Func<TSource, TKey>, Func<TSource, TResult>, Func<TSource, TSource, TResult>, IEqualityComparer<TKey>)
Performs a left outer join on two homogeneous sequences. Additional arguments specify key selection functions, result projection functions and a key comparer.
Public methodStatic memberLeftJoin<TFirst, TSecond, TKey, TResult>(IEnumerable<TFirst>, IEnumerable<TSecond>, Func<TFirst, TKey>, Func<TSecond, TKey>, Func<TFirst, TResult>, Func<TFirst, TSecond, TResult>, IEqualityComparer<TKey>)
Performs a left outer join on two heterogeneous sequences. Additional arguments specify key selection functions, result projection functions and a key comparer.
Top
See Also