C# Класс Azavea.Open.DAO.Criteria.CriteriaExpression

Наследование: AbstractExpression
Показать файл Открыть проект

Открытые свойства

Свойство Тип Описание
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