Click or drag to resize
QuerySourceBaseTSourceRightJoinTObject Method (String, String, IWhereCondition)
Joins the given source with another

Namespace: CMS.DataEngine
Assembly: CMS.DataEngine (in CMS.DataEngine.dll) Version: 10.0.0
Syntax
C#
public TSource RightJoin<TObject>(
	string leftColumn,
	string rightColumn,
	IWhereCondition additionalCondition = null
)
where TObject : new(), BaseInfo

Parameters

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

Type Parameters

TObject

Return Value

Type: TSource
See Also