C# 클래스 Azavea.Open.DAO.Criteria.Joins.AbstractOnePropertyEachJoinExpression

Base class for normal joins that use one field from both DAOs.
상속: AbstractJoinExpression
파일 보기 프로젝트 열기: azavea/net-dao

공개 프로퍼티들

프로퍼티 타입 설명
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