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: 8.2.23
Syntax
C#
public class SelectCondition : IDisposable

The SelectCondition type exposes the following members.

Constructors
Methods
Extension Methods
  NameDescription
Public Extension MethodAsValue
Converts object to a query value which can be used as a query parameter
(Defined by QueryExtensions.)
Public Extension MethodGetAPIString
Gets the string by the specified resource key
(Defined by CoreExtensions.)
Public Extension MethodGetString
Gets the string by the specified resource key
(Defined by CoreExtensions.)
Public Extension MethodToBoolean
Returns the boolean representation of an object or default value if not.
(Defined by CoreExtensions.)
Public Extension MethodToDateTime
Returns the DateTime representation of an object or default value if not.
(Defined by CoreExtensions.)
Public Extension MethodToDouble
Returns the double representation of an object or default value if not.
(Defined by CoreExtensions.)
Public Extension MethodToGuid
Returns the Guid representation of an object or default value if not.
(Defined by CoreExtensions.)
Public Extension MethodToInteger
Returns the integer representation of an object or default value if not.
(Defined by CoreExtensions.)
Public Extension MethodToString
Returns the string representation of an object or default value if not.
(Defined by CoreExtensions.)
Top
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
See Also