C# Class Azavea.Open.DAO.Criteria.CriteriaExpression

Inheritance: AbstractExpression
Afficher le fichier Open project: azavea/net-dao

Méthodes publiques

Свойство Type Description
NestedCriteria DaoCriteria

Méthodes publiques

Méthode Description
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.

Method Details

CriteriaExpression() public méthode

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

CriteriaExpression() public méthode

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. !=)
Résultat System

Invert() public méthode

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
Résultat IExpression

Property Details

NestedCriteria public_oe property

Another whole criteria to be a nested expression.
public DaoCriteria,Azavea.Open.DAO.Criteria NestedCriteria
Résultat DaoCriteria