Click or drag to resize
SelectConditionPrepareWhereCondition Method
Prepares the where condition for the given list.

Namespace: CMS.DataEngine
Assembly: CMS.DataEngine (in CMS.DataEngine.dll) Version: 9.0.0
Syntax
C#
protected string PrepareWhereCondition(
	string usedColumn,
	string method,
	string columnName,
	IEnumerable values,
	bool negation
)

Parameters

usedColumn
Type: SystemString
Column to be used in the temp table
method
Type: SystemString
Method to use for preparation
columnName
Type: SystemString
Column name for the where condition
values
Type: System.CollectionsIEnumerable
Values for the where condition
negation
Type: SystemBoolean
Indicates if the negation should be used in the condition (ABC NOT IN (1, 2, 3 ...))

Return Value

Type: String
See Also