---
title: "Deprecation: #83118 - DeleteClause methods deprecated"
manual: "TYPO3 Core Changelog"
version: "main"
permalink: "https://docs.typo3.org/permalink/changelog:deprecation-83118"
source: "Changelog/9.0/Deprecation-83118-DeleteClauseMethods.rst"
typo3-version: "9.0"
typo3-major: 9
type: "deprecation"
issue: 83118
forge: "https://forge.typo3.org/issues/83118"
tags: ["PHP-API", "Database", "Frontend", "FullyScanned"]
rendered: "2026-09-20T18:31:11+00:00"
---

# Deprecation: #83118 - DeleteClause methods deprecated {#deprecation-83118}

See [forge#83118](https://forge.typo3.org/issues/83118)

## Description {#description}

The PHP methods `PageRepository::deleteClause()` and `BackendUtility::deleteClause()` have been
marked as deprecated, as all database queries are now put through Doctrine DBAL's restriction functionality.

## Impact {#impact}

Calling one of the two methods above will trigger a deprecation log entry.

## Affected Installations {#affected-installations}

Any TYPO3 extension using any of the two methods above.

## Migration {#migration}

Migrate to Doctrine DBAL and use the new Database API (ConnectionPool, QueryBuilder) to access the database
with the `DeletedRestriction` class.
