Uses of Interface
jakarta.persistence.criteria.CriteriaDelete
Package
Description
Jakarta Persistence is the API for the management for persistence and object/relational mapping.
Jakarta Persistence Criteria API
-
Uses of CriteriaDelete in jakarta.persistence
Modifier and TypeMethodDescriptionEntityManager.createQuery
(CriteriaDelete<?> deleteQuery) Create an instance ofQuery
for executing a criteria delete query. -
Uses of CriteriaDelete in jakarta.persistence.criteria
Modifier and TypeMethodDescription<T> CriteriaDelete<T>
CriteriaBuilder.createCriteriaDelete
(Class<T> targetEntity) Create aCriteriaDelete
query object to perform a bulk delete operation.CriteriaDelete.where
(Expression<Boolean> restriction) Modify the DELETE query to restrict the target of the deletion according to the specified boolean expression.Modify the DELETE query to restrict the target of the deletion according to the conjunction of the specified restriction predicates.