AliasedExpression class

Signature:

export declare class AliasedExpression implements Selectable 

Implements: Selectable

Constructors

Constructor Modifiers Description
(constructor)(expr, alias, _methodName) Constructs a new instance of the AliasedExpression class

Properties

Property Modifiers Type Description
alias string
expr Expression
exprType ExpressionType
selectable true

AliasedExpression.(constructor)

Constructs a new instance of the AliasedExpression class

Signature:

constructor(expr: Expression, alias: string, _methodName: string | undefined);

Parameters

Parameter Type Description
expr Expression
alias string
_methodName string | undefined

AliasedExpression.alias

Signature:

readonly alias: string;

AliasedExpression.expr

Signature:

readonly expr: Expression;

AliasedExpression.exprType

Signature:

exprType: ExpressionType;

AliasedExpression.selectable

Signature:

selectable: true;