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

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

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

Метод Описание
EqualInsensitiveExpression ( string property, object value ) : System

Property == PropertyValue, case-insensitively. Does not accept wild cards.

EqualInsensitiveExpression ( string property, object value, bool trueOrNot ) : System

Property == PropertyValue, case-insensitively. Does not accept wild cards.

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.

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

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

Property == PropertyValue, case-insensitively. Does not accept wild cards.
public EqualInsensitiveExpression ( string property, object value ) : System
property string The data class' property/field being compared. /// May not be null.
value object The value to check for. May be null (to check if the field is null).
Результат System

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

Property == PropertyValue, case-insensitively. Does not accept wild cards.
public EqualInsensitiveExpression ( string property, object value, bool trueOrNot ) : System
property string The data class' property/field being compared. /// May not be null.
value object The value to check for. May be null (to check if the field is 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