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

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

Méthodes publiques

Méthode Description
BitwiseAndExpression ( string property, object value ) : System

Property AND Value equals Value

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

Property AND Value equals 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.

Method Details

BitwiseAndExpression() public méthode

Property AND Value equals Value
public BitwiseAndExpression ( 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.
Résultat System

BitwiseAndExpression() public méthode

Property AND Value equals Value
public BitwiseAndExpression ( 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. !=)
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