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

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

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

Свойство Тип Описание
Values IEnumerable

Открытые методы

Метод Описание
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.

PropertyInListExpression ( string property, IEnumerable values ) : System

Property is equal to one of the values in the given IEnumerable of values.

PropertyInListExpression ( string property, IEnumerable values, bool trueOrNot ) : System

Property is equal to one of the values in the given IList of values.

Описание методов

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

PropertyInListExpression() публичный Метод

Property is equal to one of the values in the given IEnumerable of values.
public PropertyInListExpression ( string property, IEnumerable values ) : System
property string The data class' property/field being compared. /// May not be null.
values IEnumerable The values to check for. /// May not be null. An empty list will always mean "false".
Результат System

PropertyInListExpression() публичный Метод

Property is equal to one of the values in the given IList of values.
public PropertyInListExpression ( string property, IEnumerable values, bool trueOrNot ) : System
property string The data class' property/field being compared. /// May not be null.
values IEnumerable The values to check for. /// May not be null. An empty list will always mean "false".
trueOrNot bool True means look for matches (I.E. ==), /// false means look for non-matches (I.E. !=)
Результат System

Описание свойств

Values публичное свойство

The values to check for. An empty list will always mean "false".
public IEnumerable Values
Результат IEnumerable