Click or drag to resize
SelectConditionPrepare Method (String, IListString, Boolean, Boolean)
Prepares the condition over names (strings).

Namespace: CMS.DataEngine
Assembly: CMS.DataEngine (in CMS.DataEngine.dll) Version: 8.2.23
Syntax
C#
public void Prepare(
	string columnName,
	IList<string> values,
	bool guids = false,
	bool negation = false
)

Parameters

columnName
Type: SystemString
Column name
values
Type: System.Collections.GenericIListString
Name values for the IN expression
guids (Optional)
Type: SystemBoolean
If true, the values are GUIDs
negation (Optional)
Type: SystemBoolean
Indicates if the negation should be used in the condition (ABC NOT IN (1, 2, 3 ...))
See Also