Performs a left outer join on two heterogeneous sequences. Additional arguments specify key selection functions and result projection functions.
Namespace: MoreLinq.ExtensionsMoreLinq (in MoreLinq.dll) Version: 3.0.0
Syntaxpublic static IEnumerable<TResult> LeftJoin<TFirst, TSecond, TKey, TResult>( this IEnumerable<TFirst> first, IEnumerable<TSecond> second, Func<TFirst, TKey> firstKeySelector, Func<TSecond, TKey> secondKeySelector, Func<TFirst, TResult> firstSelector, Func<TFirst, TSecond, TResult> bothSelector )
<ExtensionAttribute> Public Shared Function LeftJoin(Of TFirst, TSecond, TKey, TResult) ( first As IEnumerable(Of TFirst), second As IEnumerable(Of TSecond), firstKeySelector As Func(Of TFirst, TKey), secondKeySelector As Func(Of TSecond, TKey), firstSelector As Func(Of TFirst, TResult), bothSelector As Func(Of TFirst, TSecond, TResult) ) As IEnumerable(Of TResult)
public: [ExtensionAttribute] generic<typename TFirst, typename TSecond, typename TKey, typename TResult> static IEnumerable<TResult>^ LeftJoin( IEnumerable<TFirst>^ first, IEnumerable<TSecond>^ second, Func<TFirst, TKey>^ firstKeySelector, Func<TSecond, TKey>^ secondKeySelector, Func<TFirst, TResult>^ firstSelector, Func<TFirst, TSecond, TResult>^ bothSelector )
[<ExtensionAttribute>] static member LeftJoin : first : IEnumerable<'TFirst> * second : IEnumerable<'TSecond> * firstKeySelector : Func<'TFirst, 'TKey> * secondKeySelector : Func<'TSecond, 'TKey> * firstSelector : Func<'TFirst, 'TResult> * bothSelector : Func<'TFirst, 'TSecond, '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
IEnumerableTFirst. 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