SelectQueryFluentBuilder.Join(String, String, String, String) Method
In This Article
Performs an inner join operation with the specified options.
Namespace: DevExpress.DataAccess.Sql
Assembly: DevExpress.DataAccess.v24.2.dll
NuGet Package: DevExpress.DataAccess
#Declaration
public SelectQueryFluentBuilder Join(
string tableName,
string tableAlias,
string parentColumnName,
string nestedColumnName
)
#Parameters
Name | Type | Description |
---|---|---|
table |
String | A String value, specifying the name of a resulting table. |
table |
String | A String value, specifying the alias of a resulting table. |
parent |
String | A String value, specifying the parent column name. |
nested |
String | A String value, specifying the nested column name. |
#Returns
Type | Description |
---|---|
Select |
A Select |
See Also