| SelectCondition Class |
Namespace: CMS.DataEngine
public class SelectCondition : IDisposable
The SelectCondition type exposes the following members.
| Name | Description | |
|---|---|---|
| SelectCondition |
Constructor, prepares empty condition object.
| |
| SelectCondition(QueryDataParameters) |
Constructor, prepares empty condition object bound to specific query parameters.
| |
| SelectCondition(String, IListString) |
Constructor, prepares the condition over String type.
| |
| SelectCondition(String, IListInt32, Boolean) |
Constructor, prepares the condition over Int32 type.
| |
| SelectCondition(String, IListString, Boolean) | Obsolete.
Constructor, prepares the condition over String types.
|
| Name | Description | |
|---|---|---|
| ALL_INLINE |
Constant for Inline limit property defining that all items should be processed inline
| |
| mGroupGUID |
Group GUID for the temp table.
| |
| mInlineLimit |
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.
| |
| mParameters |
Query parameters.
| |
| mWhereCondition |
Where condition.
|
| Name | Description | |
|---|---|---|
| InlineLimit |
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.
| |
| IsEmpty |
Returns true if the selection is empty.
| |
| WhereCondition |
Returns the resulting where condition.
|
| Name | Description | |
|---|---|---|
| Dispose |
Disposes the object and removes the selection from the database if it was allocated in the temp table.
| |
| Prepare(String, IListString, Boolean) | Obsolete.
Prepares the select condition for specific value types
| |
| Prepare(String, IListString, Boolean, Boolean) | Obsolete.
Prepares the select condition for specific value types
| |
| PrepareConditionT |
Prepares the select condition for specific value types
| |
| PrepareIDs | ||
| PrepareWhereCondition |
Prepares the where condition for the given list.
|