getAll method
Returns all entries that match the filter.
Implementation
Future<List<TDao>> getAll({
Filter filter = Filter.empty,
Sort sort = Sort.empty,
int offset = 0,
int limit = -1,
}) async =>
await transaction(
(context) async {
return await context.query(
bean,
filter: filter,
sort: sort,
offset: offset,
limit: limit,
);
},
);