Skip to main content

RelationInfo(String, String, IEnumerable<RelationColumnInfo>) Constructor

Initializes a new instance of the RelationInfo class with the specified tables and key columns.

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,
    IEnumerable<RelationColumnInfo> keyColumns
)

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.

keyColumns IEnumerable<RelationColumnInfo>

A collection of RelationColumnInfo objects. This value is assigned to the RelationInfo.KeyColumns property.

See Also