The SelectCondition type exposes the following members.
Back to Top
Back to Top
Back to Top
Back to Top
Back to Top
Constructors
Name | Description | |
---|---|---|
SelectCondition |
Constructor, prepares empty condition object.
| |
SelectCondition(QueryDataParameters) |
Constructor, prepares empty condition object bound to specific query parameters.
| |
SelectCondition(String, IList Int32 , Boolean) |
Constructor, prepares the condition over IDs.
| |
SelectCondition(String, IList String , Boolean) |
Constructor, prepares the condition over names (strings).
|
Methods
Name | Description | |
---|---|---|
BuildList |
Builds the list of values separated by colon.
| |
Dispose |
Disposes the object and removes the selection from the database if it was allocated in the temp table.
| |
Equals | (Inherited from Object.) | |
Finalize | Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection. (Inherited from Object.) | |
GetHashCode | Serves as a hash function for a particular type. (Inherited from Object.) | |
GetType | Gets the Type of the current instance. (Inherited from Object.) | |
MemberwiseClone | Creates a shallow copy of the current Object. (Inherited from Object.) | |
Prepare(String, IList Int32 , Boolean) |
Prepares the condition over IDs.
| |
Prepare(String, IList String , Boolean, Boolean) |
Prepares the condition over names (strings).
| |
PrepareIDs |
Prepares the condition over IDs.
| |
PrepareWhereCondition |
Prepares the where condition for the given list.
| |
ToString | Returns a string that represents the current object. (Inherited from Object.) |
Extension Methods
Name | Description | |
---|---|---|
GetAPIString |
Gets the string by the specified resource key
(Defined by CoreExtensions.) | |
GetString |
Gets the string by the specified resource key
(Defined by CoreExtensions.) | |
ToBoolean |
Returns the boolean representation of an object or default value if not.
(Defined by CoreExtensions.) | |
ToDateTime |
Returns the DateTime representation of an object or default value if not.
(Defined by CoreExtensions.) | |
ToDouble |
Returns the double representation of an object or default value if not.
(Defined by CoreExtensions.) | |
ToGuid |
Returns the Guid representation of an object or default value if not.
(Defined by CoreExtensions.) | |
ToInteger |
Returns the integer representation of an object or default value if not.
(Defined by CoreExtensions.) | |
ToString |
Returns the string representation of an object or default value if not.
(Defined by CoreExtensions.) |
Fields
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.
|
Properties
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.
|
See Also