C# 클래스 BalticAmadeus.FluentMdx.MdxExpression

Represents arithmetics, logics or equality expressions used in Mdx query.
상속: MdxExpressionBase, IMdxExpression
파일 보기 프로젝트 열기: BalticAmadeus/FluentMdx 1 사용 예제들

공개 메소드들

메소드 설명
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