The WhereConditionBase TParent type exposes the following members.
Back to Top
Back to Top
Back to Top
Back to Top
Back to Top
Constructors
Name | Description | |
---|---|---|
WhereConditionBase TParent |
Default constructor
|
Methods
Name | Description | |
---|---|---|
AddWhereCondition |
Adds the given where condition to the final where condition
| |
AddWhereConditionInternal |
Adds the given where condition
| |
And |
Changes the where operator to AND for subsequent where conditions. Use in combination of methods Where...
| |
And(IWhereCondition) |
Adds the given where condition with the AND operator
| |
And(Action WhereCondition ) |
Adds the given where condition with the AND operator. Creates a new where condition object and runs the setup actions on it.
| |
AnySettingsDefined |
Returns true if the object has any settings defined that influence the resulting query
| |
ApplyParametersTo |
Applies this where condition to the target object
(Overrides QueryParametersBase TParent ApplyParametersTo(IQueryObject).) | |
CallOnDispose |
Adds the given action to the list of actions called when the handler object is disposed
(Inherited from DisposableObject.) | |
Clone |
Creates the clone of the object.
(Inherited from QueryParametersBase TParent .) | |
CloneObject |
Creates the clone of the object.
(Inherited from QueryParametersBase TParent .) | |
CopyPropertiesTo |
Creates the clone of the collection.
(Overrides QueryParametersBase TParent CopyPropertiesTo(IQueryObject).) | |
Dispose |
Make sure the objects get disposed
(Inherited from DisposableObject.) | |
EnsureParameters |
Ensures data parameters for the given query
(Inherited from QueryParametersBase TParent .) | |
Equals | (Inherited from Object.) | |
Expand |
Expands the expression by replacing parameters with their values
(Inherited from QueryParametersBase TParent .) | |
Finalize | Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection. (Inherited from Object.) | |
GetContainsPattern |
Gets the contains pattern for the like expression
| |
GetHashCode | Serves as a hash function for a particular type. (Inherited from Object.) | |
GetType | Gets the Type of the current instance. (Inherited from Object.) | |
GetWhere(String, QueryOperator, Object) |
Gets the where condition for the given column
| |
GetWhere(IQueryObjectWithValue, QueryOperator, Object) |
Gets the where condition for the given column
| |
HasCompatibleSource |
Returns true if the given query is an external source
| |
Changed |
Marks the object as changed
(Inherited from AbstractQueryObject.) | |
CheckReturnsNoResults |
Checks if where condition results in no data
| |
Immutable |
Makes this object instance is immutable, and next subsequent modification starts with a clone of the object.
(Inherited from QueryParametersBase TParent .) | |
IncludeDataParameters |
Adds the data parameters to the current query parameters
(Inherited from QueryParametersBase TParent .) | |
Lock |
Locks the event on the given lock object. The context stays locked until the handler is disposed.
(Inherited from DisposableObject.) | |
MemberwiseClone | Creates a shallow copy of the current Object. (Inherited from Object.) | |
NewResult |
Returns properly typed this
(Inherited from QueryParametersBase TParent .) | |
NewWhere |
Clears the current where condition
| |
NoResults |
Sets the where condition to exclude all data from result
| |
Or |
Changes the where operator to OR for next where conditions. Use in combination of methods Where...
| |
Or(IWhereCondition) |
Adds the given where condition with the OR operator
| |
Or(Action WhereCondition ) |
Adds the given where condition with the OR operator. Creates a new where condition object and runs the setup actions on it.
| |
ResetWhereOperator |
Resets the where operator to the default value
| |
ReturnNoResults |
Sets the query to return no results. This action is irreversible, once the query is set to return no results it cannot be changed.
This method is used by data engine to forbid access to data that are not allowed to be accessed (e.g. license limitations), without notifying the process about the fact.
| |
Snapshot |
Creates an immutable snapshot of the current query as a base for further evaluation. Doesn't modify the original query in any way.
(Inherited from QueryParametersBase TParent .) | |
ToString |
Returns the string representation of the expression
(Inherited from QueryParametersBase TParent .) | |
ToString(Boolean) |
Returns the string representation of the expression, with possibility of expanding parameters
(Overrides QueryParametersBase TParent ToString(Boolean).) | |
Using |
Adds the given object to the list of the allocated objects to dispose
(Inherited from DisposableObject.) | |
Where( IWhereCondition ) |
Adds the given where conditions to the query
| |
Where(Action WhereCondition ) |
Adds the given where condition to the query. Creates a new where condition object and runs the setup actions on it.
| |
Where(String, QueryDataParameters) |
Adds the given where condition to the query
| |
Where(String, QueryUnaryOperator) |
Adds the given where condition to the query. Matches the column value with an unary operator.
| |
Where(IQueryObjectWithValue, QueryUnaryOperator) |
Adds the given where condition to the query. Matches the column value with an unary operator.
| |
Where(String, QueryOperator, Object) |
Adds the given where condition to the query. Matches the column to a given value.
| |
Where(IQueryObjectWithValue, QueryOperator, Object) |
Adds the given where condition to the query. Matches the column to a given value.
| |
WhereContains(String, String) |
Adds the condition for a string column to contain some substring
| |
WhereContains(IQueryObjectWithValue, String) |
Adds the condition for a string column to contain some substring
| |
WhereEmpty |
Adds the where condition for a null or empty column value
| |
WhereEndsWith(String, String) |
Adds the condition for a string column to end with some prefix
| |
WhereEndsWith(IQueryObjectWithValue, String) |
Adds the condition for a string expression to end with some prefix
| |
WhereEquals(String, Object) |
Adds the given where condition to the query. Matches the column to a given value.
| |
WhereEquals(IQueryObjectWithValue, Object) |
Adds the given where condition to the query. Matches the left side to the given right side.
| |
WhereEqualsOrNull |
Adds the given where condition to the query. Matches the column to a given value or null value.
| |
WhereExists(IDataQuery) |
Adds where condition with EXISTS and the nested query "EXISTS (...)"
| |
WhereExists(IDataQuery, Boolean) |
Adds where condition with EXISTS and the nested query "EXISTS (...)"
| |
WhereFalse(String) |
Adds the where condition for a false column value (boolean column equals false).
| |
WhereFalse(IQueryObjectWithValue) |
Adds the where condition for a false expression value (boolean expression equals false).
| |
WhereGreaterOrEquals(String, Object) |
Adds the given where condition to the query. Matches the left side which is greater or equal than the right side.
| |
WhereGreaterOrEquals(IQueryObjectWithValue, Object) |
Adds the given where condition to the query. Matches the left side which is greater or equal than the right side.
| |
WhereGreaterThan(String, Object) |
Adds the given where condition to the query. Matches the left side which is greater than the right side.
| |
WhereGreaterThan(IQueryObjectWithValue, Object) |
Adds the given where condition to the query. Matches the left side which is greater than the right side.
| |
WhereID |
Adds the where condition to match the ID to the query. In case the column name is not provided or unknown, does not generate where condition. If given ID is invalid, adds the condition to match NULL.
| |
WhereIn(String, IDataQuery) |
Adds where condition to the nested query, e.g. "columnName IN (...)"
| |
WhereIn(String, IList Int32 ) |
Adds where condition to the list of values, e.g. "columnName IN (...)"
| |
WhereIn(String, IList String ) |
Adds where condition to the list of values, e.g. "columnName IN (...)"
| |
WhereIn(String, IDataQuery, Boolean) |
Adds where condition to the list of values, e.g. "columnName IN (...)"
| |
WhereIn(String, IList Int32 , Boolean) |
Adds where condition to the list of values, e.g. "columnName IN (...)"
| |
WhereIn(String, IList String , Boolean) |
Adds where condition to the list of values, e.g. "columnName IN (...)"
| |
WhereLessOrEquals(String, Object) |
Adds the given where condition to the query. Matches the left side which is less or equal than the right side.
| |
WhereLessOrEquals(IQueryObjectWithValue, Object) |
Adds the given where condition to the query. Matches the left side which is less or equal than the right side.
| |
WhereLessThan(String, Object) |
Adds the given where condition to the query. Matches the left side which is less than the right side.
| |
WhereLessThan(IQueryObjectWithValue, Object) |
Adds the given where condition to the query. Matches the left side which is less than the right side.
| |
WhereLike(String, String) |
Adds the given where condition to the query. Matches the column to a given value using LIKE operator.
| |
WhereLike(IQueryObjectWithValue, Object) |
Adds the given where condition to the query. Matches the left side and right side using LIKE operator.
| |
WhereNot |
Adds the negation of the given where condition
| |
WhereNotContains(String, String) |
Adds the condition for a string column not to contain some substring
| |
WhereNotContains(IQueryObjectWithValue, String) |
Adds the condition for a string column not to contain some substring
| |
WhereNotEmpty |
Adds the where condition for a non empty column value
| |
WhereNotEndsWith(String, String) |
Adds the condition for a string column not to end with some prefix
| |
WhereNotEndsWith(IQueryObjectWithValue, String) |
Adds the condition for a string column not to end with some prefix
| |
WhereNotEquals(String, Object) |
Adds the given where condition to the query. Matches the column which is not equal to a given value.
| |
WhereNotEquals(IQueryObjectWithValue, Object) |
Adds the given where condition to the query. Matches the left side which is not equal to the right side.
| |
WhereNotExists |
Adds where condition with NOT EXISTS and the nested query "NOT EXISTS (...)"
| |
WhereNotIn(String, IDataQuery) |
Adds where condition to the nested query, e.g. "columnName NOT IN (...)"
| |
WhereNotIn(String, IList Int32 ) |
Adds where condition to the list of values, e.g. "columnName NOT IN (...)"
| |
WhereNotIn(String, IList String ) |
Adds where condition to the list of values, e.g. "columnName NOT IN (...)"
| |
WhereNotLike(String, String) |
Adds the given where condition to the query. Matches the column to a given value using NOT LIKE operator.
| |
WhereNotLike(IQueryObjectWithValue, Object) |
Adds the given where condition to the query. Matches the left side and right side using NOT LIKE operator.
| |
WhereNotNull(String) |
Adds the where condition for a not null column value
| |
WhereNotNull(IQueryObjectWithValue) |
Adds the where condition for a not null expression value
| |
WhereNotStartsWith(String, String) |
Adds the condition for a string column not to start with some prefix
| |
WhereNotStartsWith(IQueryObjectWithValue, String) |
Adds the condition for a string column not to start with some prefix
| |
WhereNull(String) |
Adds the where condition for a null column value
| |
WhereNull(IQueryObjectWithValue) |
Adds the where condition for a null expression value
| |
WhereStartsWith(String, String) |
Adds the condition for a string column to start with some prefix
| |
WhereStartsWith(IQueryObjectWithValue, String) |
Adds the condition for a string column to start with some prefix
| |
WhereTrue(String) |
Adds the where condition for a true column value (boolean column equals true).
| |
WhereTrue(IQueryObjectWithValue) |
Adds the where condition for a true expression value (boolean expression equals true).
|
Extension Methods
Name | Description | |
---|---|---|
AsValue |
Converts object to a query value which can be used as a query parameter
(Defined by QueryExtensions.) | |
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 | |
---|---|---|
mParameters |
Query data parameters
(Inherited from QueryParametersBase TParent .) |
Properties
Name | Description | |
---|---|---|
DisposeUsedObjects |
Disposes the objects that were used as parameters for this query
| |
IsImmutable |
If true, this object instance is immutable, and next subsequent modification starts with a clone of the object.
(Inherited from QueryParametersBase TParent .) | |
IsNested |
Indicates that this query is part of multi query
(Inherited from AbstractQueryObject.) | |
Name |
Object name, empty by default
(Inherited from AbstractQueryObject.) | |
Parameters |
Query data parameters
(Inherited from QueryParametersBase TParent .) | |
ReturnsNoResults |
Returns true if query doesn't return any results
| |
WhereBuilder |
Where condition builder
| |
WhereCondition |
Where condition on the data, e.g. "DocumentName = 'ABC'"
| |
WhereIsComplex |
Returns true if the given where condition is a complex where condition
| |
WhereIsEmpty |
Returns true if the where condition is empty
| |
WhereOperator |
Operator used for adding where condition. Default is AND
|
See Also