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

SelectQueryFluentBuilder.Join(String, String, RelationColumnInfo[]) Method

Performs an inner join operation with the specified options.

Namespace: DevExpress.DataAccess.Sql

Assembly: DevExpress.DataAccess.v21.2.dll

NuGet Packages: DevExpress.DataAccess, DevExpress.Win.Design

Declaration

public SelectQueryFluentBuilder Join(
    string tableName,
    string tableAlias,
    params RelationColumnInfo[] keyColumns
)

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.

keyColumns RelationColumnInfo[]

An array of RelationColumnInfo objects.

Returns

Type Description
SelectQueryFluentBuilder

A SelectQueryFluentBuilder object.

See Also