SelectQueryFluentBuilder.Join(String, String, String) Method
Performs an inner join operation with the specified options.
Namespace: DevExpress.DataAccess.Sql
Assembly: DevExpress.DataAccess.v24.2.dll
Declaration
public SelectQueryFluentBuilder Join(
string tableName,
string parentColumnName,
string nestedColumnName
)
Parameters
Name | Type | Description |
---|---|---|
tableName | String | A String value, specifying the name of a resulting table. |
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