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

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

공개 메소드들

메소드 설명
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.

LesserExpression ( string property, object value ) : System

Property < Value

LesserExpression ( string property, object value, bool trueOrNot ) : System

Property < Value

ToString ( ) : string

메소드 상세

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

LesserExpression() 공개 메소드

Property < Value
public LesserExpression ( string property, object value ) : System
property string The data class' property/field being compared. /// May not be null.
value object The value to check for. May not be null.
리턴 System

LesserExpression() 공개 메소드

Property < Value
public LesserExpression ( string property, object value, bool trueOrNot ) : System
property string The data class' property/field being compared. /// May not be null.
value object The value to check for. May not be null.
trueOrNot bool True means look for matches (I.E. <), /// false means look for non-matches (I.E. >=)
리턴 System

ToString() 공개 메소드

public ToString ( ) : string
리턴 string