JoinType Enum
In This Article
Lists the values that specify the join type.
Namespace: DevExpress.Xpo.DB
Assembly: DevExpress.Data.v24.2.dll
NuGet Package: DevExpress.Data
#Declaration
#Members
Name | Description |
---|---|
Inner
|
Represents an inner join. Inner joins (also known as equijoins) are used to combine information from two or more tables. |
Left
|
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