- execute
int execute(string sql, DbParam[] params)
Undocumented in source. Be warned that the author may not have intended to support it.
- executeScalar
T executeScalar(string sql, DbParam[] params)
Undocumented in source. Be warned that the author may not have intended to support it.
- insert
void insert(T model, string table)
Undocumented in source. Be warned that the author may not have intended to support it.
- insert
void insert(T[] models, string table)
Undocumented in source. Be warned that the author may not have intended to support it.
- remove
void remove(T model, string table)
Undocumented in source. Be warned that the author may not have intended to support it.
- remove
void remove(T[] models, string table)
Undocumented in source. Be warned that the author may not have intended to support it.
- selectMany
InputRange!T selectMany(string sql, DbParam[] params)
Undocumented in source. Be warned that the author may not have intended to support it.
- selectOffset
InputRange!T selectOffset(string sql, DbParam[] params, int offset, int limit, string sortColumn, string sortType)
Undocumented in source. Be warned that the author may not have intended to support it.
- selectSingle
T selectSingle(string sql, DbParam[] params)
Undocumented in source. Be warned that the author may not have intended to support it.
- update
void update(T model, string table)
Undocumented in source. Be warned that the author may not have intended to support it.
- update
void update(T[] models, string table)
Undocumented in source. Be warned that the author may not have intended to support it.