C# Class Azavea.Open.DAO.Criteria.Joins.AbstractPropertyValueJoinExpression

Base class for joins that use one field from a single DAO and compares on a value.
Inheritance: AbstractJoinExpression
Datei anzeigen Open project: azavea/net-dao

Public Properties

Property Type Description
Property string
Value object

Protected Methods

Method Description
AbstractPropertyValueJoinExpression ( string property, object value, bool trueOrNot )

Base class for joins that use one field from a single DAO and compares on a value.

Method Details

AbstractPropertyValueJoinExpression() protected method

Base class for joins that use one field from a single DAO and compares on a value.
protected AbstractPropertyValueJoinExpression ( string property, object value, bool trueOrNot )
property string The name of the property on the object returned by the /// DAO that we are comparing.
value object The value that the given property is compared to.
trueOrNot bool True means look for matches (I.E. ==), /// false means look for non-matches (I.E. !=)

Property Details

Property public_oe property

The name of the property on the object returned by the DAO that we are comparing.
public string Property
return string

Value public_oe property

The value that the given property is compared to.
public object Value
return object