Uses of Interface
javax.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 javax.persistence
Methods in javax.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 javax.persistence.criteria
Methods in javax.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.