C# Class MicroLite.Dialect.SQLiteDialect

The implementation of ISqlDialect for SQLite.
Inheritance: SqlDialect
Mostra file Open project: TrevorPilley/MicroLite Class Usage Examples

Public Methods

Method Description
BuildSelectInsertIdSqlQuery ( IObjectInfo objectInfo ) : SqlQuery
PageQuery ( SqlQuery sqlQuery, PagingOptions pagingOptions ) : SqlQuery

Creates an SqlQuery to page the records which would be returned by the specified SqlQuery based upon the paging options.

Private Methods

Method Description
SQLiteDialect ( ) : System

Initialises a new instance of the SQLiteDialect class.

Method Details

BuildSelectInsertIdSqlQuery() public method

public BuildSelectInsertIdSqlQuery ( IObjectInfo objectInfo ) : SqlQuery
objectInfo IObjectInfo
return SqlQuery

PageQuery() public method

Creates an SqlQuery to page the records which would be returned by the specified SqlQuery based upon the paging options.
public PageQuery ( SqlQuery sqlQuery, PagingOptions pagingOptions ) : SqlQuery
sqlQuery SqlQuery The SQL query.
pagingOptions PagingOptions The paging options.
return SqlQuery