count method
Future<int>
count(
- Session session, {
- WhereExpressionBuilder<
CloudStorageEntryTable> ? where, - int? limit,
- Transaction? transaction,
Implementation
Future<int> count(
_i1.Session session, {
_i1.WhereExpressionBuilder<CloudStorageEntryTable>? where,
int? limit,
_i1.Transaction? transaction,
}) async {
return session.db.count<CloudStorageEntry>(
where: where?.call(CloudStorageEntry.t),
limit: limit,
transaction: transaction,
);
}