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

PropertyInListExpression() public method

Property is equal to one of the values in the given IEnumerable of values.
public PropertyInListExpression ( string property, IEnumerable values ) : System
property string The data class' property/field being compared. /// May not be null.
values IEnumerable The values to check for. /// May not be null. An empty list will always mean "false".
return System
        public PropertyInListExpression(string property, IEnumerable values)
            : this(property, values, true)
        {
        }

Same methods

PropertyInListExpression::PropertyInListExpression ( string property, IEnumerable values, bool trueOrNot ) : System
PropertyInListExpression