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

AsNegated() public method

Marks the current expression as negative and returns the updated current MdxExpression.
public AsNegated ( ) : MdxExpression
return MdxExpression
        public MdxExpression AsNegated()
        {
            _isNot = true;
            return this;
        }