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.
|
Name | Description | |
---|---|---|
ALL_INLINE |
Constant for Inline limit property defining that all items should be processed inline
| |
ALL_TABLE_VALUED_PARAMETER |
Constant for Inline limit property defining that all items should be processed as table-valued parameter.
| |
mGroupGUID |
Group GUID for the temp table.
| |
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 * FROM @List)), where @List is of the following SQL user-defined table types: Type_CMS_IntegerTable, Type_CMS_BigIntTable, Type_CMS_StringTable, Type_CMS_GuidTable
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.
| |
PrepareConditionT |
Prepares the select condition for specific value types
|