SelectQueryFluentBuilder.Join(String, String, JoinType, RelationColumnInfo[]) Method
OBSOLETE
This overload is obsolete now. Use Join instead.
Performs a specified join operation.
Namespace: DevExpress.DataAccess.Sql
Assembly: DevExpress.DataAccess.v25.1.dll
NuGet Package: DevExpress.DataAccess
Declaration
[Obsolete("This overload is obsolete now. Use Join(string tableName, string tableAlias, SqlJoinType joinType, params RelationColumnInfo[] keyColumns) instead.")]
public SelectQueryFluentBuilder Join(
string tableName,
string tableAlias,
JoinType joinType,
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. |
| joinType | JoinType | A JoinType enumeration value. |
| keyColumns | RelationColumnInfo[] | An array of RelationColumnInfo objects. |
Returns
| Type | Description |
|---|---|
| SelectQueryFluentBuilder | A SelectQueryFluentBuilder object. |
See Also