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

SelectQueryFluentBuilder.Join(String, String, JoinType, String, String) Method

Performs a specified join operation.

Namespace: DevExpress.DataAccess.Sql

Assembly: DevExpress.DataAccess.v18.2.dll

Declaration

public SelectQueryFluentBuilder Join(
    string tableName,
    string tableAlias,
    JoinType joinType,
    string parentColumnName,
    string nestedColumnName
)

Parameters

Name Type Description
tableName String

A String value, specifying the name of a resulting table.

tableAlias String

A String value, specifying the alias of a resulting table.

joinType JoinType

A JoinType enumeration value.

parentColumnName String

A String value, specifying the parent column name.

nestedColumnName String

A String value, specifying the nested column name.

Returns

Type Description
SelectQueryFluentBuilder

A SelectQueryFluentBuilder object.

See Also