Performs a left outer join on two homogeneous sequences. Additional arguments specify key selection functions and result projection functions.
Namespace: MoreLinqMoreLinq (in MoreLinq.dll) Version: 3.0.0
Syntaxpublic static IEnumerable<TResult> LeftJoin<TSource, TKey, TResult>( this IEnumerable<TSource> first, IEnumerable<TSource> second, Func<TSource, TKey> keySelector, Func<TSource, TResult> firstSelector, Func<TSource, TSource, TResult> bothSelector )
<ExtensionAttribute> Public Shared Function LeftJoin(Of TSource, TKey, TResult) ( first As IEnumerable(Of TSource), second As IEnumerable(Of TSource), keySelector As Func(Of TSource, TKey), firstSelector As Func(Of TSource, TResult), bothSelector As Func(Of TSource, TSource, TResult) ) As IEnumerable(Of TResult)
public: [ExtensionAttribute] generic<typename TSource, typename TKey, typename TResult> static IEnumerable<TResult>^ LeftJoin( IEnumerable<TSource>^ first, IEnumerable<TSource>^ second, Func<TSource, TKey>^ keySelector, Func<TSource, TResult>^ firstSelector, Func<TSource, TSource, TResult>^ bothSelector )
[<ExtensionAttribute>] static member LeftJoin : first : IEnumerable<'TSource> * second : IEnumerable<'TSource> * keySelector : Func<'TSource, 'TKey> * firstSelector : Func<'TSource, 'TResult> * bothSelector : Func<'TSource, 'TSource, 'TResult> -> IEnumerable<'TResult>Parameters
Type:
IEnumerableTResultA sequence containing results projected from a left outer join of the two input sequences.
Usage NoteIn Visual Basic and C#, you can call this method as an instance method on any object of type
IEnumerableTSource. When you use instance method syntax to call this method, omit the first parameter. For more information, see
Extension Methods (Visual Basic)or
Extension Methods (C# Programming Guide).
See AlsoRetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4