Skip to main content
A newer version of this page is available. .

RelationException(String, String, Type, String, String, Type) Constructor

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

Namespace: DevExpress.DataAccess.Sql

Assembly: DevExpress.DataAccess.v18.2.dll

Declaration

public RelationException(
    string masterTable,
    string masterColumn,
    Type masterType,
    string detailTable,
    string detailColumn,
    Type detailType
)

Parameters

Name Type Description
masterTable String

A String value, specifying the master table name.

masterColumn String

A String value, specifying the master key column name.

masterType Type

A Type enumeration value, specifying the master column’s property type.

detailTable String

A String value, specifying the detail table name.

detailColumn String

A String value, specifying the detail key column name.

detailType Type

A Type enumeration value, specifying the detail column’s property type.

See Also