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

Base class for normal joins that use one field from both DAOs.
Наследование: AbstractJoinExpression
Показать файл Открыть проект

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

Свойство Тип Описание
LeftProperty string
RightProperty string

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

Метод Описание
AbstractOnePropertyEachJoinExpression ( string leftProperty, string rightProperty, bool trueOrNot )

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

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

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

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

Описание свойств

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

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

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

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