delete static method

  1. @Deprecated('Will be removed in 2.0.0. Use: db.deleteWhere instead.')
Future<int> delete(
  1. Session session, {
  2. required WhereExpressionBuilder<EmailCreateAccountRequestTable> where,
  3. Transaction? transaction,
})

Implementation

@Deprecated('Will be removed in 2.0.0. Use: db.deleteWhere instead.')
static Future<int> delete(
  _i1.Session session, {
  required _i1.WhereExpressionBuilder<EmailCreateAccountRequestTable> where,
  _i1.Transaction? transaction,
}) async {
  return session.db.delete<EmailCreateAccountRequest>(
    where: where(EmailCreateAccountRequest.t),
    transaction: transaction,
  );
}