Skip to main content
A newer version of this page is available. .

JoinElement.Type Property

Gets or sets the JOIN type.

Namespace: DevExpress.DataAccess.DataFederation

Assembly: DevExpress.DataAccess.v19.1.dll

Declaration

[DefaultValue(JoinType.Inner)]
public JoinType Type { get; set; }

Property Value

Type Default Description
JoinType **Inner**

A JoinType enumeration member that specified the JOIN type.

Available values:

Name Description
Inner

Simple JOIN that returns the rows that satisfy the join condition.

LeftOuter

Returns all rows from the first source and only the rows from the second source that match the condition.

See Also