Skip to main content

JoinNode(DBTable, String, JoinType) Constructor

Initializes a new instance of the JoinNode class with default settings.

Namespace: DevExpress.Xpo.DB

Assembly: DevExpress.Data.v23.2.dll

NuGet Package: DevExpress.Data

Declaration

public JoinNode(
    DBTable table,
    string alias,
    JoinType type
)

Parameters

Name Type Description
table DBTable

A DBTable object that represent the table.

alias String

A String value that identifies the table. This value is assigned to the JoinNode.Alias property.

type JoinType

A JoinType enumeration value that specifies the join’s type. This value is assigned to the JoinNode.Type property.

See Also