Skip to main content

SelectQueryFluentBuilder.Join(String, JoinType, String) Method

OBSOLETE

This overload is obsolete now. Use Join instead.

Performs a specified join operation.

Namespace: DevExpress.DataAccess.Sql

Assembly: DevExpress.DataAccess.v23.2.dll

NuGet Packages: DevExpress.DataAccess, DevExpress.Win.PivotGrid, DevExpress.Win.TreeMap

Declaration

[Obsolete("This overload is obsolete now. Use Join(string tableName, SqlJoinType joinType, string keyColumnName) instead.")]
public SelectQueryFluentBuilder Join(
    string tableName,
    JoinType joinType,
    string keyColumnName
)

Parameters

Name Type Description
tableName String

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

joinType JoinType

A JoinType enumeration value.

keyColumnName String

A String value, specifying the key column name. This value identifies two columns that must have similar names in both tables. To join tables by key columns having different names, use another Join overload.

Returns

Type Description
SelectQueryFluentBuilder

A SelectQueryFluentBuilder object.

See Also