find method
Future<List<ReadWriteTestEntry> >
find(
- DatabaseAccessor databaseAccessor, {
- WhereExpressionBuilder<
ReadWriteTestEntryTable> ? where, - int? limit,
- int? offset,
- OrderByBuilder<
ReadWriteTestEntryTable> ? orderBy, - bool orderDescending = false,
- OrderByListBuilder<
ReadWriteTestEntryTable> ? orderByList, - Transaction? transaction,
Implementation
Future<List<ReadWriteTestEntry>> find(
_i1.DatabaseAccessor databaseAccessor, {
_i1.WhereExpressionBuilder<ReadWriteTestEntryTable>? where,
int? limit,
int? offset,
_i1.OrderByBuilder<ReadWriteTestEntryTable>? orderBy,
bool orderDescending = false,
_i1.OrderByListBuilder<ReadWriteTestEntryTable>? orderByList,
_i1.Transaction? transaction,
}) async {
return databaseAccessor.db.find<ReadWriteTestEntry>(
where: where?.call(ReadWriteTestEntry.t),
orderBy: orderBy?.call(ReadWriteTestEntry.t),
orderByList: orderByList?.call(ReadWriteTestEntry.t),
orderDescending: orderDescending,
limit: limit,
offset: offset,
transaction: transaction ?? databaseAccessor.transaction,
);
}