Azavea.Open.DAO.Criteria.LikeInsensitiveExpression.Invert C# (CSharp) Method

Invert() public method

Produces an expression that is the exact opposite of this expression. The new expression should exclude everything this one includes, and include everything this one excludes.
public Invert ( ) : IExpression
return IExpression
        public override IExpression Invert()
        {
            return new LikeInsensitiveExpression(Property, Value, !_trueOrNot);
        }
LikeInsensitiveExpression