SelectQueryFluentBuilder.Join(String, SqlJoinType, String, String) Method
In This Article
Joins two tables. Allows you to specify the join operation type and column names by which the tables should be joined.
Namespace: DevExpress.DataAccess.Sql
Assembly: DevExpress.DataAccess.v24.2.dll
NuGet Package: DevExpress.DataAccess
#Declaration
public SelectQueryFluentBuilder Join(
string tableName,
SqlJoinType joinType,
string parentColumnName,
string nestedColumnName
)
#Parameters
Name | Type | Description |
---|---|---|
table |
String | The name of the table (nested table) with which the current table (parent table) of the query builder should be joined. |
join |
Sql |
The join operation type. |
parent |
String | The parent table column name. |
nested |
String | The nested table column name. |
#Returns
Type | Description |
---|---|
Select |
A query builder that contains the join operation result. |
#Example
using DevExpress.DataAccess.Sql;
// ...
var query = SelectQueryFluentBuilder
.AddTable("Categories")
.SelectColumns("CategoryID", "CategoryName")
.Join(tableName: "Products",
joinType: SqlJoinType.RightOuter,
parentColumnName: "CategoryID",
nestedColumnName: "CtgID")
.Build("Categories");
See Also