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

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

Public Properties

Property Type Description
Property string

Public Methods

Method Description
ToString ( ) : string

Protected Methods

Method Description
AbstractSinglePropertyExpression ( string property, bool trueOrNot ) : System

Base class for expressions that only check one property.

Method Details

AbstractSinglePropertyExpression() protected method

Base class for expressions that only check one property.
protected AbstractSinglePropertyExpression ( string property, bool trueOrNot ) : System
property string The data class' property/field being compared. /// May not be null.
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

Property public_oe property

The data class' property/field being compared. May not be null.
public string Property
return string