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

WithOperator() public method

Appends the operation to the end of expression and returns the updated current MdxExpression.
public WithOperator ( string operationOperator ) : MdxExpression
operationOperator string Appended operation operator.
return MdxExpression
        public MdxExpression WithOperator(string operationOperator)
        {
            _operators.Add(operationOperator);
            return this;
        }