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

EqualInsensitiveExpression() public method

Property == PropertyValue, case-insensitively. Does not accept wild cards.
public EqualInsensitiveExpression ( 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 EqualInsensitiveExpression(string property, object value)
            : this(property, value, true)
        {
        }

Same methods

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