The ColumnExpression type exposes the following members.
Back to Top
Back to Top
Methods
Name | Description | |
---|---|---|
Clone | Clone the expression.
| |
ContainsAggregationMethod | Checks if column expression contains an aggregation method.
| |
Create | Parse a column expression and return a ColumnExpression.
| |
CreateFromPlotExpression |
Parse a custom expression that can be used on plots and return a list of ColumnExpressions.
| |
Finalize | Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection. (Inherited from Object.) | |
GetExpressionReturnType | Get the result type for the given expression using the columns
in the specified table.
| |
GetType | Gets the Type of the current instance. (Inherited from Object.) | |
MemberwiseClone | Creates a shallow copy of the current Object. (Inherited from Object.) | |
QualifyNames |
Make sure that all column/hierarchy references in the query are fully qualified.
| |
RenameColumn | Rename all column references from oldName to
newName.
| |
RenameHierarchy | Rename all hierarchy references from oldName to
newName.
| |
ToString | Get a string representation of the column expression.
(Overrides Object ToString .) | |
Validate | Validates if the column expression is valid in the given
DataTable context.
|
Properties
Name | Description | |
---|---|---|
Alias | Get the alias (name) of the calculated column if there is an AS
part of the column expression.
| |
ColumnNames | Get the names of all column names referenced in the expression.
| |
ErrorDisplayMessage | Get the localized error message if the expression is
invalid, null otherwise.
| |
ErrorExpression | Get the expression that could not be parsed if it exists,
if the expression is valid then this property is null.
| |
ErrorMessage | Get the error message if the expression is invalid, null
otherwise.
| |
Expression | Gets the expression as a string.
This would exclude any alias (name) statement.
| |
HierarchyNames | Get all hierarchy names referenced in the expression.
| |
IsValid | True if the expression is valid, false otherwise.
| |
MethodNames | Get the names of all the methods which are referenced
in the expression.
|
See Also