C# Класс BalticAmadeus.FluentMdx.MdxExpression

Represents arithmetics, logics or equality expressions used in Mdx query.
Наследование: MdxExpressionBase, IMdxExpression
Показать файл Открыть проект Примеры использования класса

Открытые методы

Метод Описание
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.

Защищенные методы

Метод Описание
GetStringExpression ( ) : string

Описание методов

AsNegated() публичный Метод

Marks the current expression as negative and returns the updated current MdxExpression.
public AsNegated ( ) : MdxExpression
Результат MdxExpression

AsNegative() публичный Метод

Marks the current expression as negative and returns the updated current MdxExpression.
public AsNegative ( ) : MdxExpression
Результат MdxExpression

GetStringExpression() защищенный Метод

protected GetStringExpression ( ) : string
Результат string

MdxExpression() публичный Метод

Initializes a new instance of MdxExpression.
public MdxExpression ( ) : System
Результат System

WithOperand() публичный Метод

Appends the IMdxExpression to the end of expression and returns the updated current MdxExpression.
public WithOperand ( IMdxExpression operand ) : MdxExpression
operand IMdxExpression Appended .
Результат MdxExpression

WithOperation() публичный Метод

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 .
Результат MdxExpression

WithOperator() публичный Метод

Appends the operation to the end of expression and returns the updated current MdxExpression.
public WithOperator ( string operationOperator ) : MdxExpression
operationOperator string Appended operation operator.
Результат MdxExpression