BalticAmadeus.FluentMdx.MdxConstantExpression.WithValue C# (CSharp) Method

WithValue() public method

Sets the value of expression and returns the instance of MdxConstantExpression.
public WithValue ( string value ) : MdxConstantExpression
value string Value of expression.
return MdxConstantExpression
        public MdxConstantExpression WithValue(string value)
        {
            Value = value;
            return this;
        }