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

JoinType Enum

Lists the values that specify the join type.

Namespace: DevExpress.Xpo.DB

Assembly: DevExpress.Data.v18.2.dll

Declaration

public enum JoinType

Members

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.

Related API Members

The following properties accept/return JoinType values:

Remarks

The values listed by this enumeration are used to set the JoinNode.Type property.

See Also