C# Class Azavea.Open.DAO.SQL.SqlDaJoinQuery

A SQL query that joins two tables, can be run by the SqlDaLayer.
Inheritance: SqlDaQuery, IDaJoinQuery
Afficher le fichier Open project: azavea/net-dao

Méthodes publiques

Méthode Description
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.

Method Details

GetLeftColumnPrefix() public méthode

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
Résultat string

GetRightColumnPrefix() public méthode

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
Résultat string

SetPrefixes() public méthode

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.
Résultat void