C# Класс Passive.Dialect.DatabaseDialect

Class that describes a variant of the SQL Language.
Показать файл Открыть проект Примеры использования класса

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

Метод Описание
GetIdentitySql ( ) : string

Gets the SQL for retrieving the just-inserted identity.

GetPagingSql ( string tableName, string columns, string orderBy, string where, int pageSize, int currentPage ) : string

Gets the SQL statement for paging given the supplied information.

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

GetIdentitySql() публичный Метод

Gets the SQL for retrieving the just-inserted identity.
public GetIdentitySql ( ) : string
Результат string

GetPagingSql() публичный Метод

Gets the SQL statement for paging given the supplied information.
public GetPagingSql ( string tableName, string columns, string orderBy, string where, int pageSize, int currentPage ) : string
tableName string Name of the table.
columns string The columns.
orderBy string The order by.
where string The where.
pageSize int Size of the page.
currentPage int The current page.
Результат string