count method

Future<int> count(
  1. Session session, {
  2. WhereExpressionBuilder<EmailCreateAccountRequestTable>? where,
  3. int? limit,
  4. Transaction? transaction,
})

Implementation

Future<int> count(
  _i1.Session session, {
  _i1.WhereExpressionBuilder<EmailCreateAccountRequestTable>? where,
  int? limit,
  _i1.Transaction? transaction,
}) async {
  return session.dbNext.count<EmailCreateAccountRequest>(
    where: where?.call(EmailCreateAccountRequest.t),
    limit: limit,
    transaction: transaction,
  );
}