Class QueryColumnBase<TColumn>
- Namespace
- CMS.DataEngine
- Assembly
- CMS.DataEngine.dll
Query column
public abstract class QueryColumnBase<TColumn> : QueryParametersBase<TColumn>, IQueryParameters<TColumn>, IQueryColumn, IQueryExpression, IQueryParameters, IQueryObjectWithValue, IQueryObject where TColumn : QueryColumnBase<TColumn>, new()
Type Parameters
TColumn
- Inheritance
-
objectQueryParametersBase<TColumn>QueryColumnBase<TColumn>
- Implements
-
IQueryParameters<TColumn>
- Derived
- Inherited Members
- Extension Methods
Constructors
QueryColumnBase(string)
Constructor
protected QueryColumnBase(string expression)
Parameters
expression
stringExpression (column name)
Properties
Expression
Expression (column name)
public string Expression { get; set; }
Property Value
- string
IsSingleColumn
Returns true if this column represents a single column
public abstract bool IsSingleColumn { get; }
Property Value
- bool
Name
Gets the column name
public override string Name { get; }
Property Value
- string
TypedThis
Returns specifically typed current instance
protected TColumn TypedThis { get; }
Property Value
- TColumn
Methods
AsAlias()
Returns the new column created from this column alias
public IQueryColumn AsAlias()
Returns
AsValue()
Gets a query expression representing this object as a value
public virtual IQueryExpression AsValue()
Returns
GetExpression()
Gets the expression for the column data
public virtual string GetExpression()
Returns
- string
ToString(bool)
Returns the string representation of the expression, with possibility of expanding parameters
public override string ToString(bool expand)
Parameters
expand
boolIf true, the result is expanded with parameters so it can act as standalone value.
Returns
- string
WithExpression(string)
Sets the expression
[Obsolete("Method was not intended for public use and will be removed in the next version.")]
[ObsoleteSince(27, 0)]
public TColumn WithExpression(string expression)
Parameters
expression
stringNew column expression
Returns
- TColumn
Operators
explicit operator string(QueryColumnBase<TColumn>)
Implicit operator for conversion from QueryColumn class to string
public static explicit operator string(QueryColumnBase<TColumn> col)
Parameters
col
QueryColumnBase<TColumn>Column object
Returns
- string