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

WithOperand() public method

Appends the IMdxExpression to the end of expression and returns the updated current MdxExpression.
public WithOperand ( IMdxExpression operand ) : MdxExpression
operand IMdxExpression Appended .
return MdxExpression
        public MdxExpression WithOperand(IMdxExpression operand)
        {
            _operands.Add(operand);
            return this;
        }