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