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

AsNegated() 공개 메소드

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