Uses of Interface
jakarta.persistence.criteria.CriteriaDelete
Packages that use 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
Methods in jakarta.persistence with parameters of type CriteriaDeleteModifier and TypeMethodDescriptionEntityManager.createQuery
(CriteriaDelete<?> deleteQuery) Create an instance ofQuery
for executing a criteria delete query. -
Uses of CriteriaDelete in jakarta.persistence.criteria
Methods in jakarta.persistence.criteria that return CriteriaDeleteModifier 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.