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

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
        public MdxExpression WithOperator(string operationOperator)
        {
            _operators.Add(operationOperator);
            return this;
        }