Join(Table, Table, JoinType, IEnumerable<RelationColumnInfo>) Constructor
Initializes a new instance of the Join class with the specified settings.
Namespace: DevExpress.DataAccess.Sql
Assembly: DevExpress.DataAccess.v25.1.dll
NuGet Package: DevExpress.DataAccess
Declaration
public Join(
Table parent,
Table nested,
JoinType type,
IEnumerable<RelationColumnInfo> columns
)
Parameters
| Name | Type | Description |
|---|---|---|
| parent | Table | A Table object, corresponding to the parent table. |
| nested | Table | A Table object, corresponding to the nested table. |
| type | JoinType | A JoinType enumeration value. |
| columns | IEnumerable<RelationColumnInfo> | A collection of RelationColumnInfo objects. |
See Also