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

RelationInfo.JoinType Property

Specifies the type of the Join statement that is used to obtain data records from two or more datasource tables.

Namespace: DevExpress.DataAccess.Sql

Assembly: DevExpress.DataAccess.v20.2.dll

NuGet Packages: DevExpress.DataAccess, DevExpress.WindowsDesktop.DataAccess

Declaration

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

Property Value

Type Default Description
JoinType **Inner**

A JoinType enumeration value.

Available values:

Name Description
Inner

Represents an inner join. Inner joins (also known as equijoins) are used to combine information from two or more tables.

LeftOuter

Includes all the records in which the linked field value in both tables is an exact match and every record in the primary for which there is no match.

See Also