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

Inheritance: AbstractExpression
Datei anzeigen Open project: azavea/net-dao

Public Properties

Property Type Description
NestedCriteria DaoCriteria

Public Methods

Method 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 method

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

CriteriaExpression() public method

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. !=)
return System

Invert() public method

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
return IExpression

Property Details

NestedCriteria public_oe property

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