C# 클래스 Azavea.Open.DAO.SQL.SqlDaJoinQuery

A SQL query that joins two tables, can be run by the SqlDaLayer.
상속: SqlDaQuery, IDaJoinQuery
파일 보기 프로젝트 열기: azavea/net-dao

공개 메소드들

메소드 설명
GetLeftColumnPrefix ( ) : string

The prefix that should be used to get the left table's columns out of the IDataReader when accessing them by name.

GetRightColumnPrefix ( ) : string

The prefix that should be used to get the right table's columns out of the IDataReader when accessing them by name.

SetPrefixes ( string left, string right ) : void

Populates the prefix strings.

메소드 상세

GetLeftColumnPrefix() 공개 메소드

The prefix that should be used to get the left table's columns out of the IDataReader when accessing them by name.
public GetLeftColumnPrefix ( ) : string
리턴 string

GetRightColumnPrefix() 공개 메소드

The prefix that should be used to get the right table's columns out of the IDataReader when accessing them by name.
public GetRightColumnPrefix ( ) : string
리턴 string

SetPrefixes() 공개 메소드

Populates the prefix strings.
public SetPrefixes ( string left, string right ) : void
left string Prefix for columns from the left table.
right string Prefix for columns from the right table.
리턴 void