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

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

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

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

LikeInsensitiveExpression ( string property, object value ) : System

A looser form of Like, insensitive, when Like is not required to be (e.g., in Postgres)

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

A looser form of Like, insensitive, when Like is not required to be (e.g., in Postgres)

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

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

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

A looser form of Like, insensitive, when Like is not required to be (e.g., in Postgres)
public LikeInsensitiveExpression ( 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 not be null.
Результат System

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

A looser form of Like, insensitive, when Like is not required to be (e.g., in Postgres)
public LikeInsensitiveExpression ( 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 not be null.
trueOrNot bool True means look for matches (I.E. ==), /// false means look for non-matches (I.E. !=)
Результат System