Interface IQueryParameters
- Namespace
- CMS.DataEngine
- Assembly
- CMS.DataEngine.dll
Query parameters interface.
public interface IQueryParameters : IQueryObject
- Inherited Members
- Extension Methods
Methods
ApplyParametersTo(IQueryObject)
Applies this where condition to the target object
void ApplyParametersTo(IQueryObject target)
Parameters
target
IQueryObjectTarget object defining parameters
CopyPropertiesTo(IQueryObject)
Copies the properties to the target query.
void CopyPropertiesTo(IQueryObject target)
Parameters
target
IQueryObjectTarget object defining properties
EnsureParameters()
Ensures data parameters for the given query
QueryDataParameters EnsureParameters()
Returns
Expand(string)
Expands the expression by replacing parameters with their values
string Expand(string expression)
Parameters
expression
stringExpression to expand
Returns
- string
ToString(bool)
Returns the string representation of the expression, with possibility of expanding parameters
string ToString(bool expand)
Parameters
expand
boolIf true, the result is expanded with parameters so it can act as standalone value.
Returns
- string