deleteWhere method

Implementation

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