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

SelectQuery.AddRelation(Table, Table, String, String) Method

Creates a relation between two data tables using an inner join operation.

Namespace: DevExpress.DataAccess.Sql

Assembly: DevExpress.DataAccess.v18.2.dll

Declaration

public Join AddRelation(
    Table parent,
    Table nested,
    string parentKeyColumn,
    string nestedKeyColumn
)

Parameters

Name Type Description
parent Table

A Table object, specifying the parent table.

nested Table

A Table object, specifying the nested table.

parentKeyColumn String

A String value, specifying the parent key column name.

nestedKeyColumn String

A String value, specifying the nested key column name.

Returns

Type Description
Join

A Join object.

See Also