Azavea.Open.DAO.Criteria.BetweenExpression.BetweenExpression C# (CSharp) 메소드

BetweenExpression() 공개 메소드

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.
리턴 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