Azavea.Open.DAO.Criteria.AbstractSingleValueExpression.AbstractSingleValueExpression C# (CSharp) Метод

AbstractSingleValueExpression() защищенный Метод

Base class for expressions that only check one property.
protected AbstractSingleValueExpression ( string property, object value, bool nullOk, bool trueOrNot ) : System
property string The data class' property/field being compared. /// May not be null.
value object The value to check for. May be null only if nullOk is true.
nullOk bool Whether the value can be null or not.
trueOrNot bool True means look for matches (I.E. ==), /// false means look for non-matches (I.E. !=)
Результат System
        protected AbstractSingleValueExpression(string property, object value, bool nullOk, bool trueOrNot)
            : base(property, trueOrNot)
        {
            if ((!nullOk) && (value == null))
            {
                throw new ArgumentNullException("value", "Value parameter cannot be null.");
            }
            Value = value;
        }
AbstractSingleValueExpression