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

Base class for normal joins that use one field from both DAOs.
Inheritance: AbstractJoinExpression
Datei anzeigen Open project: azavea/net-dao

Public Properties

Property Type Description
LeftProperty string
RightProperty string

Protected Methods

Method Description
AbstractOnePropertyEachJoinExpression ( string leftProperty, string rightProperty, bool trueOrNot )

Base class for normal joins that use one field from both DAOs.

Method Details

AbstractOnePropertyEachJoinExpression() protected method

Base class for normal joins that use one field from both DAOs.
protected AbstractOnePropertyEachJoinExpression ( string leftProperty, string rightProperty, bool trueOrNot )
leftProperty string The name of the property on the object returned by the /// left DAO that we are comparing.
rightProperty string The name of the property on the object returned by the /// right DAO that we are comparing.
trueOrNot bool True means look for matches (I.E. ==), /// false means look for non-matches (I.E. !=)

Property Details

LeftProperty public_oe property

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

RightProperty public_oe property

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