BalticAmadeus.FluentMdx.MdxExpression.WithOperation C# (CSharp) Method

WithOperation() public method

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

            return this;
        }