Azavea.Open.DAO.Criteria.AbstractExpression.AbstractExpression C# (CSharp) Method

AbstractExpression() protected method

This lets you specify whether to negate this expression.
protected AbstractExpression ( bool trueOrNot ) : System
trueOrNot bool True means look for matches (I.E. ==), /// false means look for non-matches (I.E. !=)
return System
        protected AbstractExpression(bool trueOrNot)
        {
            _trueOrNot = trueOrNot;
        }