C# Класс Azavea.Open.DAO.Criteria.Joins.AbstractPropertyValueJoinExpression

Base class for joins that use one field from a single DAO and compares on a value.
Наследование: AbstractJoinExpression
Показать файл Открыть проект

Открытые свойства

Свойство Тип Описание
Property string
Value object

Защищенные методы

Метод Описание
AbstractPropertyValueJoinExpression ( string property, object value, bool trueOrNot )

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

Описание методов

AbstractPropertyValueJoinExpression() защищенный Метод

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 публичное свойство

The name of the property on the object returned by the DAO that we are comparing.
public string Property
Результат string

Value публичное свойство

The value that the given property is compared to.
public object Value
Результат object