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

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

Méthodes publiques

Свойство Type Description
Value object

Méthodes publiques

Méthode Description
ToString ( ) : string

Méthodes protégées

Méthode Description
AbstractSingleValueExpression ( string property, object value, bool nullOk, bool trueOrNot ) : System

Base class for expressions that only check one property.

Method Details

AbstractSingleValueExpression() protected méthode

Base class for expressions that only check one property.
protected AbstractSingleValueExpression ( string property, object value, bool nullOk, bool trueOrNot ) : System
property string The data class' property/field being compared. /// May not be null.
value object The value to check for. May be null only if nullOk is true.
nullOk bool Whether the value can be null or not.
trueOrNot bool True means look for matches (I.E. ==), /// false means look for non-matches (I.E. !=)
Résultat System

ToString() public méthode

public ToString ( ) : string
Résultat string

Property Details

Value public_oe property

The value to compare with.
public object Value
Résultat object