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

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

공개 프로퍼티들

프로퍼티 타입 설명
NestedCriteria DaoCriteria

공개 메소드들

메소드 설명
CriteriaExpression ( DaoCriteria crit ) : System

Used when nesting another criteria.

CriteriaExpression ( DaoCriteria crit, bool trueOrNot ) : System

Used when nesting another criteria.

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.

메소드 상세

CriteriaExpression() 공개 메소드

Used when nesting another criteria.
public CriteriaExpression ( DaoCriteria crit ) : System
crit DaoCriteria Another whole criteria to be a nested expression. /// May not be null.
리턴 System

CriteriaExpression() 공개 메소드

Used when nesting another criteria.
public CriteriaExpression ( DaoCriteria crit, bool trueOrNot ) : System
crit DaoCriteria Another whole criteria to be a nested expression. /// 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

프로퍼티 상세

NestedCriteria 공개적으로 프로퍼티

Another whole criteria to be a nested expression.
public DaoCriteria,Azavea.Open.DAO.Criteria NestedCriteria
리턴 DaoCriteria