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