Join.SqlJoinType Property
In This Article
Specifies the join operation type.
Namespace: DevExpress.DataAccess.Sql
Assembly: DevExpress.DataAccess.v24.2.dll
NuGet Package: DevExpress.DataAccess
#Declaration
[DefaultValue(SqlJoinType.Inner)]
public SqlJoinType SqlJoinType { get; set; }
#Property Value
Type | Default | Description |
---|---|---|
Sql |
Inner | The join operation type. |
Available values:
Name | Description |
---|---|
Inner | The inner join type. |
Left |
The left outer join type. |
Right |
The right outer join type. |
Full |
The full outer join type. |
See Also