QuerySourceBaseTSourceJoin Method (QuerySourceTable, String, String, IWhereCondition, JoinTypeEnum) |
Joins the given source with another
Namespace: CMS.DataEngineAssembly: CMS.DataEngine (in CMS.DataEngine.dll) Version: 13.0.131
Syntax public TSource Join(
QuerySourceTable source,
string leftColumn,
string rightColumn,
IWhereCondition additionalCondition = null,
JoinTypeEnum joinType = JoinTypeEnum.Inner
)
Parameters
- source
- Type: CMS.DataEngineQuerySourceTable
Source table - leftColumn
- Type: SystemString
Left column - rightColumn
- Type: SystemString
Right column - additionalCondition (Optional)
- Type: CMS.DataEngineIWhereCondition
Additional JOIN condition, this will be added with AND operator to the base condition - joinType (Optional)
- Type: CMS.DataEngineJoinTypeEnum
Type of the join
Return Value
Type:
TSourceSee Also