Click or drag to resize
SelectConditionPrepare Method (String, IListString, Boolean, Boolean)

Note: This API is now obsolete.

Prepares the select condition for specific value types

Namespace: CMS.DataEngine
Assembly: CMS.DataEngine (in CMS.DataEngine.dll) Version: 9.0.0
Syntax
C#
[ObsoleteAttribute("Use PrepareCondition method.")]
public void Prepare(
	string columnName,
	IList<string> values,
	bool guids,
	bool negation
)

Parameters

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