C# Класс Azavea.Open.DAO.SQL.SqlDaJoinQuery

A SQL query that joins two tables, can be run by the SqlDaLayer.
Наследование: SqlDaQuery, IDaJoinQuery
Показать файл Открыть проект

Открытые методы

Метод Описание
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