Azavea.Open.DAO.Criteria.BetweenExpression.BetweenExpression C# (CSharp) Méthode

BetweenExpression() public méthode

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.
Résultat 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