BalticAmadeus.FluentMdx.MdxExpression.WithOperation C# (CSharp) 메소드

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
        public MdxExpression WithOperation(string operationOperator, IMdxExpression operand)
        {
            _operators.Add(operationOperator);
            _operands.Add(operand);

            return this;
        }