deleteWhere method

Implementation

Future<List<ServerHealthConnectionInfo>> deleteWhere(
  _i1.Session session, {
  required _i1.WhereExpressionBuilder<ServerHealthConnectionInfoTable> where,
  _i1.Transaction? transaction,
}) async {
  return session.db.deleteWhere<ServerHealthConnectionInfo>(
    where: where(ServerHealthConnectionInfo.t),
    transaction: transaction,
  );
}