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

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

Public Properties

Property Type Description
Value object

Public Methods

Method Description
ToString ( ) : string

Protected Methods

Method Description
AbstractSingleValueExpression ( string property, object value, bool nullOk, bool trueOrNot ) : System

Base class for expressions that only check one property.

Method Details

AbstractSingleValueExpression() protected method

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

ToString() public method

public ToString ( ) : string
return string

Property Details

Value public_oe property

The value to compare with.
public object Value
return object