count method
Future<int>
count(
- DatabaseAccessor databaseAccessor, {
- WhereExpressionBuilder<
SessionLogEntryTable> ? where, - int? limit,
- Transaction? transaction,
Implementation
Future<int> count(
_i1.DatabaseAccessor databaseAccessor, {
_i1.WhereExpressionBuilder<SessionLogEntryTable>? where,
int? limit,
_i1.Transaction? transaction,
}) async {
return databaseAccessor.db.count<SessionLogEntry>(
where: where?.call(SessionLogEntry.t),
limit: limit,
transaction: transaction ?? databaseAccessor.transaction,
);
}