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

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

공개 메소드들

메소드 설명
EqualExpression ( string property, object value ) : System

Property == PropertyValue. Does not accept wild cards.

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

Property == PropertyValue. Does not accept wild cards.

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.

메소드 상세

EqualExpression() 공개 메소드

Property == PropertyValue. Does not accept wild cards.
public EqualExpression ( 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 be null (to check if the field is null).
리턴 System

EqualExpression() 공개 메소드

Property == PropertyValue. Does not accept wild cards.
public EqualExpression ( 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 be null (to check if the field is 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