Click or drag to resize

TOuterExtFullOuterJoinTOuter, TInner, TKey, TResult Method

[Missing <summary> documentation for "M:Stimulsoft.Data.Extensions.TOuterExt.FullOuterJoin``4(System.Collections.Generic.IEnumerable{``0},System.Collections.Generic.IEnumerable{``1},System.Func{``0,``2},System.Func{``1,``2},System.Func{``0,``1,``3})"]

Namespace:  Stimulsoft.Data.Extensions
Assembly:  Stimulsoft.Data (in Stimulsoft.Data.dll) Version: 2019.3.1.0
Syntax
public static IEnumerable<TResult> FullOuterJoin<TOuter, TInner, TKey, TResult>(
	this IEnumerable<TOuter> outer,
	IEnumerable<TInner> inner,
	Func<TOuter, TKey> outerKeySelector,
	Func<TInner, TKey> innerKeySelector,
	Func<TOuter, TInner, TResult> resultSelector
)
where TOuter : class
where TInner : class

Parameters

outer
Type: System.Collections.GenericIEnumerableTOuter

[Missing <param name="outer"/> documentation for "M:Stimulsoft.Data.Extensions.TOuterExt.FullOuterJoin``4(System.Collections.Generic.IEnumerable{``0},System.Collections.Generic.IEnumerable{``1},System.Func{``0,``2},System.Func{``1,``2},System.Func{``0,``1,``3})"]

inner
Type: System.Collections.GenericIEnumerableTInner

[Missing <param name="inner"/> documentation for "M:Stimulsoft.Data.Extensions.TOuterExt.FullOuterJoin``4(System.Collections.Generic.IEnumerable{``0},System.Collections.Generic.IEnumerable{``1},System.Func{``0,``2},System.Func{``1,``2},System.Func{``0,``1,``3})"]

outerKeySelector
Type: SystemFuncTOuter, TKey

[Missing <param name="outerKeySelector"/> documentation for "M:Stimulsoft.Data.Extensions.TOuterExt.FullOuterJoin``4(System.Collections.Generic.IEnumerable{``0},System.Collections.Generic.IEnumerable{``1},System.Func{``0,``2},System.Func{``1,``2},System.Func{``0,``1,``3})"]

innerKeySelector
Type: SystemFuncTInner, TKey

[Missing <param name="innerKeySelector"/> documentation for "M:Stimulsoft.Data.Extensions.TOuterExt.FullOuterJoin``4(System.Collections.Generic.IEnumerable{``0},System.Collections.Generic.IEnumerable{``1},System.Func{``0,``2},System.Func{``1,``2},System.Func{``0,``1,``3})"]

resultSelector
Type: SystemFuncTOuter, TInner, TResult

[Missing <param name="resultSelector"/> documentation for "M:Stimulsoft.Data.Extensions.TOuterExt.FullOuterJoin``4(System.Collections.Generic.IEnumerable{``0},System.Collections.Generic.IEnumerable{``1},System.Func{``0,``2},System.Func{``1,``2},System.Func{``0,``1,``3})"]

Type Parameters

TOuter

[Missing <typeparam name="TOuter"/> documentation for "M:Stimulsoft.Data.Extensions.TOuterExt.FullOuterJoin``4(System.Collections.Generic.IEnumerable{``0},System.Collections.Generic.IEnumerable{``1},System.Func{``0,``2},System.Func{``1,``2},System.Func{``0,``1,``3})"]

TInner

[Missing <typeparam name="TInner"/> documentation for "M:Stimulsoft.Data.Extensions.TOuterExt.FullOuterJoin``4(System.Collections.Generic.IEnumerable{``0},System.Collections.Generic.IEnumerable{``1},System.Func{``0,``2},System.Func{``1,``2},System.Func{``0,``1,``3})"]

TKey

[Missing <typeparam name="TKey"/> documentation for "M:Stimulsoft.Data.Extensions.TOuterExt.FullOuterJoin``4(System.Collections.Generic.IEnumerable{``0},System.Collections.Generic.IEnumerable{``1},System.Func{``0,``2},System.Func{``1,``2},System.Func{``0,``1,``3})"]

TResult

[Missing <typeparam name="TResult"/> documentation for "M:Stimulsoft.Data.Extensions.TOuterExt.FullOuterJoin``4(System.Collections.Generic.IEnumerable{``0},System.Collections.Generic.IEnumerable{``1},System.Func{``0,``2},System.Func{``1,``2},System.Func{``0,``1,``3})"]

Return Value

Type: IEnumerableTResult

[Missing <returns> documentation for "M:Stimulsoft.Data.Extensions.TOuterExt.FullOuterJoin``4(System.Collections.Generic.IEnumerable{``0},System.Collections.Generic.IEnumerable{``1},System.Func{``0,``2},System.Func{``1,``2},System.Func{``0,``1,``3})"]

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type IEnumerableTOuter. 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 Also