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

Inheritance: AbstractSinglePropertyExpression
Afficher le fichier Open project: azavea/net-dao

Méthodes publiques

Свойство Type Description
Max object
Min object

Méthodes publiques

Méthode Description
BetweenExpression ( string property, object min, object max ) : System

PropertyValue <= Property <= PropertyValue2

BetweenExpression ( string property, object min, object max, bool trueOrNot ) : System

PropertyValue <= Property <= PropertyValue2

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.

ToString ( ) : string

Method Details

BetweenExpression() public méthode

PropertyValue <= Property <= PropertyValue2
public BetweenExpression ( string property, object min, object max ) : System
property string The data class' property/field being compared. /// May not be null.
min object The minimum acceptable value. May not be null.
max object The maximum acceptable value. May not be null.
Résultat System

BetweenExpression() public méthode

PropertyValue <= Property <= PropertyValue2
public BetweenExpression ( string property, object min, object max, bool trueOrNot ) : System
property string The data class' property/field being compared. /// May not be null.
min object The minimum acceptable value. May not be null.
max object The maximum acceptable value. May not be null.
trueOrNot bool True means look for matches (I.E. ==), /// false means look for non-matches (I.E. !=)
Résultat System

Invert() public méthode

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
Résultat IExpression

ToString() public méthode

public ToString ( ) : string
Résultat string

Property Details

Max public_oe property

The maximum acceptable value. May not be null.
public object Max
Résultat object

Min public_oe property

The minimum acceptable value. May not be null.
public object Min
Résultat object