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

LikeExpression() public method

A looser form of equals, may be case insensitive, and allowing wild cards.
public LikeExpression ( 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 not be null.
return System
        public LikeExpression(string property, object value)
            : this(property, value, true)
        {
        }

Same methods

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