Click or drag to resize
SelectCondition Constructor (String, IListInt32, Boolean)
Constructor, prepares the condition over Int32 type.

Namespace: CMS.DataEngine
Assembly: CMS.DataEngine (in CMS.DataEngine.dll) Version: 9.0.0
Syntax
C#
public SelectCondition(
	string columnName,
	IList<int> values,
	bool negation = false
)

Parameters

columnName
Type: SystemString
Column name. Column name is not encapsulated by square brackets or escaped.
values
Type: System.Collections.GenericIListInt32
Int32 values for the IN expression
negation (Optional)
Type: SystemBoolean
Indicates if the negation should be used in the condition (Column NOT IN (1, 2, 3 ...))
Remarks
Null values are ignored.
See Also