Click or drag to resize
QueryExpressionBase<TExpression> Class
Query expression base class
Inheritance Hierarchy
System.Object
  CMS.Base.DisposableObject
    CMS.DataEngine.AbstractQueryObject
      CMS.DataEngine.QueryParametersBase<TExpression>
        CMS.DataEngine.QueryExpressionBase<TExpression>
          CMS.DataEngine.QueryExpression
          CMS.DataEngine.QueryValueExpression
          CMS.DataEngine.UpdateQueryExpression

Namespace: CMS.DataEngine
Assembly: CMS.DataEngine (in CMS.DataEngine.dll) Version: 9.0.0
Syntax
C#
public class QueryExpressionBase<TExpression> : QueryParametersBase<TExpression>, 
	IQueryExpression, IQueryParameters, IQueryObjectWithValue, IQueryObject
where TExpression : new(), QueryExpressionBase<TExpression>

Type Parameters

TExpression

The QueryExpressionBase< TExpression> type exposes the following members.

Constructors
Fields
Properties
Methods
  NameDescription
Public methodApplyParametersTo
Applies this where condition to the target object
(Inherited from QueryParametersBase<TParent>.)
Public methodAsColumn
Creates a column from the given expression
Public methodAsValue
Gets a query expression representing this object as a value
Public methodCallOnDispose
Adds the given action to the list of actions called when the handler object is disposed
(Inherited from DisposableObject.)
Public methodClone
Creates the clone of the object.
(Inherited from QueryParametersBase<TParent>.)
Public methodCloneObject
Creates the clone of the object.
(Inherited from QueryParametersBase<TParent>.)
Public methodCopyPropertiesTo
Copies all the object properties to the given target class
(Overrides QueryParametersBase<TParent>.CopyPropertiesTo(IQueryObject).)
Public methodDispose
Make sure the objects get disposed
(Inherited from DisposableObject.)
Public methodEnsureParameters
Ensures data parameters for the given query
(Inherited from QueryParametersBase<TParent>.)
Public methodExpand
Expands the expression by replacing parameters with their values
(Inherited from QueryParametersBase<TParent>.)
Public methodGetExpression
Gets a query expression representing this object as a value
Public methodChanged
Marks the object as changed
(Inherited from AbstractQueryObject.)
Public methodImmutable
Makes this object instance is immutable, and next subsequent modification starts with a clone of the object.
(Inherited from QueryParametersBase<TParent>.)
Public methodIncludeDataParameters
Adds the data parameters to the current query parameters
(Inherited from QueryParametersBase<TParent>.)
Public methodLock
Locks the event on the given lock object. The context stays locked until the handler is disposed.
(Inherited from DisposableObject.)
Protected methodNewResult
Returns properly typed this
(Inherited from QueryParametersBase<TParent>.)
Public methodReset
Flushes the results but leaves the generated query text unchanged. After the reset, query can be executed again to obtain new data.
(Inherited from AbstractQueryObject.)
Public methodSnapshot
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>.)
Public methodToString()
Returns the string representation of the expression
(Inherited from QueryParametersBase<TParent>.)
Public methodToString(Boolean)
Returns the string representation of the expression, with possibility of expanding parameters
(Overrides QueryParametersBase<TParent>.ToString(Boolean).)
Public methodUsing
Adds the given object to the list of the allocated objects to dispose
(Inherited from DisposableObject.)
Top
See Also