C# Class BalticAmadeus.FluentMdx.MdxExpression

Represents arithmetics, logics or equality expressions used in Mdx query.
Inheritance: MdxExpressionBase, IMdxExpression
Afficher le fichier Open project: BalticAmadeus/FluentMdx Class Usage Examples

Méthodes publiques

Méthode Description
AsNegated ( ) : MdxExpression

Marks the current expression as negative and returns the updated current MdxExpression.

AsNegative ( ) : MdxExpression

Marks the current expression as negative and returns the updated current MdxExpression.

MdxExpression ( ) : System

Initializes a new instance of MdxExpression.

WithOperand ( IMdxExpression operand ) : MdxExpression

Appends the IMdxExpression to the end of expression and returns the updated current MdxExpression.

WithOperation ( string operationOperator, IMdxExpression operand ) : MdxExpression

Appends the specified operator and IMdxExpression to the end of expression and returns the updated current MdxExpression.

WithOperator ( string operationOperator ) : MdxExpression

Appends the operation to the end of expression and returns the updated current MdxExpression.

Méthodes protégées

Méthode Description
GetStringExpression ( ) : string

Method Details

AsNegated() public méthode

Marks the current expression as negative and returns the updated current MdxExpression.
public AsNegated ( ) : MdxExpression
Résultat MdxExpression

AsNegative() public méthode

Marks the current expression as negative and returns the updated current MdxExpression.
public AsNegative ( ) : MdxExpression
Résultat MdxExpression

GetStringExpression() protected méthode

protected GetStringExpression ( ) : string
Résultat string

MdxExpression() public méthode

Initializes a new instance of MdxExpression.
public MdxExpression ( ) : System
Résultat System

WithOperand() public méthode

Appends the IMdxExpression to the end of expression and returns the updated current MdxExpression.
public WithOperand ( IMdxExpression operand ) : MdxExpression
operand IMdxExpression Appended .
Résultat MdxExpression

WithOperation() public méthode

Appends the specified operator and IMdxExpression to the end of expression and returns the updated current MdxExpression.
public WithOperation ( string operationOperator, IMdxExpression operand ) : MdxExpression
operationOperator string Appended operation operator.
operand IMdxExpression Appended .
Résultat MdxExpression

WithOperator() public méthode

Appends the operation to the end of expression and returns the updated current MdxExpression.
public WithOperator ( string operationOperator ) : MdxExpression
operationOperator string Appended operation operator.
Résultat MdxExpression