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