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

Inheritance: AbstractSinglePropertyExpression
Datei anzeigen Open project: azavea/net-dao

Public Properties

Property Type Description
Max object
Min object

Public Methods

Method 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 method

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.
return System

BetweenExpression() public method

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. !=)
return System

Invert() public method

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
return IExpression

ToString() public method

public ToString ( ) : string
return string

Property Details

Max public_oe property

The maximum acceptable value. May not be null.
public object Max
return object

Min public_oe property

The minimum acceptable value. May not be null.
public object Min
return object