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

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

Public Methods

Method Description
GreaterExpression ( string property, object value ) : System

Property > Value

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

Property > Value

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

GreaterExpression() public method

Property > Value
public GreaterExpression ( 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.
return System

GreaterExpression() public method

Property > Value
public GreaterExpression ( 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. <=)
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