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

AbstractSinglePropertyExpression() protected method

Base class for expressions that only check one property.
protected AbstractSinglePropertyExpression ( string property, bool trueOrNot ) : System
property string The data class' property/field being compared. /// May not be null.
trueOrNot bool True means look for matches (I.E. ==), /// false means look for non-matches (I.E. !=)
return System
        protected AbstractSinglePropertyExpression(string property, bool trueOrNot)
            : base(trueOrNot)
        {
            if (property == null)
            {
                throw new ArgumentNullException("property", "Property parameter cannot be null.");
            }
            Property = property;
        }
AbstractSinglePropertyExpression