Click or drag to resize
SelectCondition Class
Provides the selection where condition for ABC IN (1, 2, 3, 4, 5, ...) for very large number of items.
Inheritance Hierarchy
SystemObject
  CMS.DataEngineSelectCondition

Namespace: CMS.DataEngine
Assembly: CMS.DataEngine (in CMS.DataEngine.dll) Version: 9.0.0
Syntax
C#
public class SelectCondition : IDisposable

The SelectCondition type exposes the following members.

Constructors
Fields
  NameDescription
Public fieldStatic memberALL_INLINE
Constant for Inline limit property defining that all items should be processed inline
Protected fieldmGroupGUID
Group GUID for the temp table.
Protected fieldmInlineLimit
Limit of the number of items for the inline evaluation. If there are more items than this limit, the where condition is returned in format: ColumnName IN (SELECT ItemName FROM Func_Selection_ParseNames(@List_949939be_1bf7_48d9_bbd6_57facb5c8001)) Otherwise, inline format is used: ColumnName IN (Value1, Value2, ...) If set to -1, inline format is always used.
Protected fieldmParameters
Query parameters.
Protected fieldmWhereCondition
Where condition.
Top
Properties
  NameDescription
Public propertyInlineLimit
Limit of the number of items for the inline evaluation. If there are more items than this limit, the where condition is returned in format: ColumnName IN (SELECT ItemName FROM Func_Selection_ParseNames(@List_949939be_1bf7_48d9_bbd6_57facb5c8001)) Otherwise, inline format is used: ColumnName IN (Value1, Value2, ...) If set to -1, inline format is always used.
Public propertyIsEmpty
Returns true if the selection is empty.
Public propertyWhereCondition
Returns the resulting where condition.
Top
Methods
  NameDescription
Public methodDispose
Disposes the object and removes the selection from the database if it was allocated in the temp table.
Public methodPrepare(String, IListString, Boolean) Obsolete.
Prepares the select condition for specific value types
Public methodPrepare(String, IListString, Boolean, Boolean) Obsolete.
Prepares the select condition for specific value types
Public methodPrepareConditionT
Prepares the select condition for specific value types
Public methodPrepareIDs
Prepares the condition for Int32 values represented as String type.
Protected methodPrepareWhereCondition
Prepares the where condition for the given list.
Top
See Also