Skip to main content

RelationInfo(String, String, JoinType, RelationColumnInfo) Constructor

Initializes a new instance of the RelationInfo class with the specified settings.

Namespace: DevExpress.DataAccess.Sql

Assembly: DevExpress.DataAccess.v23.2.dll

NuGet Packages: DevExpress.DataAccess, DevExpress.Win.PivotGrid, DevExpress.Win.TreeMap

Declaration

public RelationInfo(
    string parentTable,
    string nestedTable,
    JoinType joinType,
    RelationColumnInfo keyColumn
)

Parameters

Name Type Description
parentTable String

A String value, specifying the parent table name. This value is assigned to the RelationInfo.ParentTable property.

nestedTable String

A String value, specifying the nested table name. This value is assigned to the RelationInfo.NestedTable property.

joinType JoinType

A JoinType enumeration value. This value is assigned to the RelationInfo.JoinType property.

keyColumn RelationColumnInfo

A RelationColumnInfo object. This value is assigned to the RelationInfo.KeyColumns property.

See Also