SelectQueryFluentBuilder.Join(String, JoinType, String, String, String, ConditionType) Method
OBSOLETE
This overload is obsolete now. Use Join instead.
Performs a specified join operation.
Namespace: DevExpress.DataAccess.Sql
Assembly: DevExpress.DataAccess.v24.2.dll
Declaration
[Obsolete("This overload is obsolete now. Use Join(string tableName, SqlJoinType joinType, string tableAlias, string parentColumnName, string nestedColumnName, ConditionType compareOperator) instead.")]
public SelectQueryFluentBuilder Join(
string tableName,
JoinType joinType,
string tableAlias,
string parentColumnName,
string nestedColumnName,
ConditionType compareOperator
)
Parameters
Name | Type | Description |
---|---|---|
tableName | String | A String value, specifying the name of a resulting table. |
joinType | JoinType | A JoinType enumeration value. |
tableAlias | String | A String value, specifying the alias of a resulting table. |
parentColumnName | String | A String value, specifying the parent column name. |
nestedColumnName | String | A String value, specifying the nested column name. |
compareOperator | ConditionType | A ConditionType enumeration value. |
Returns
Type | Description |
---|---|
SelectQueryFluentBuilder | A SelectQueryFluentBuilder object. |
See Also