count static method
Future<int>
count(
- Session session, {
- ReadWriteTestEntryExpressionBuilder? where,
- int? limit,
- bool useCache = true,
- Transaction? transaction,
Implementation
static Future<int> count(
_i1.Session session, {
ReadWriteTestEntryExpressionBuilder? where,
int? limit,
bool useCache = true,
_i1.Transaction? transaction,
}) async {
return session.db.count<ReadWriteTestEntry>(
where: where != null ? where(ReadWriteTestEntry.t) : null,
limit: limit,
useCache: useCache,
transaction: transaction,
);
}