deleteWhere method
Future<List<ServerHealthConnectionInfo> >
deleteWhere(
- Session session, {
- required WhereExpressionBuilder<
ServerHealthConnectionInfoTable> where, - Transaction? transaction,
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,
);
}