selectQuery method
Future<SqlResponse<List<TModel> > >
selectQuery({
- Where where(
- TDef e
- OrderBy<
ITableDefinition> orderBy(- TDef e
- PostgreSQLExecutionContext? cn = null,
Implementation
Future<SqlResponse<List<TModel>>> selectQuery({
Where Function(TDef e)? where,
OrderBy Function(TDef e)? orderBy,
PostgreSQLExecutionContext? cn = null,
}) async {
var result = _selectQuery(runQueryToTModel, where, orderBy, cn);
return result;
}