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

BetweenExpression() public method

PropertyValue <= Property <= PropertyValue2
public BetweenExpression ( string property, object min, object max ) : System
property string The data class' property/field being compared. /// May not be null.
min object The minimum acceptable value. May not be null.
max object The maximum acceptable value. May not be null.
return System
        public BetweenExpression(string property, object min, object max)
            : this(property, min, max, true)
        {
        }

Same methods

BetweenExpression::BetweenExpression ( string property, object min, object max, bool trueOrNot ) : System