C# 클래스 Azavea.Open.DAO.Criteria.BetweenExpression

상속: AbstractSinglePropertyExpression
파일 보기 프로젝트 열기: azavea/net-dao

공개 프로퍼티들

프로퍼티 타입 설명
Max object
Min object

공개 메소드들

메소드 설명
BetweenExpression ( string property, object min, object max ) : System

PropertyValue <= Property <= PropertyValue2

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

PropertyValue <= Property <= PropertyValue2

Invert ( ) : IExpression

Produces an expression that is the exact opposite of this expression. The new expression should exclude everything this one includes, and include everything this one excludes.

ToString ( ) : string

메소드 상세

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

BetweenExpression() 공개 메소드

PropertyValue <= Property <= PropertyValue2
public BetweenExpression ( string property, object min, object max, bool trueOrNot ) : 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.
trueOrNot bool True means look for matches (I.E. ==), /// false means look for non-matches (I.E. !=)
리턴 System

Invert() 공개 메소드

Produces an expression that is the exact opposite of this expression. The new expression should exclude everything this one includes, and include everything this one excludes.
public Invert ( ) : IExpression
리턴 IExpression

ToString() 공개 메소드

public ToString ( ) : string
리턴 string

프로퍼티 상세

Max 공개적으로 프로퍼티

The maximum acceptable value. May not be null.
public object Max
리턴 object

Min 공개적으로 프로퍼티

The minimum acceptable value. May not be null.
public object Min
리턴 object