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

EqualExpression() public method

Property == PropertyValue. Does not accept wild cards.
public EqualExpression ( string property, object value ) : System
property string The data class' property/field being compared. /// May not be null.
value object The value to check for. May be null (to check if the field is null).
return System
        public EqualExpression(string property, object value)
            : this(property, value, true)
        {
        }

Same methods

EqualExpression::EqualExpression ( string property, object value, bool trueOrNot ) : System