spring-projects / spring-data-jpa

Simplifies the development of creating a JPA-based data access layer.
https://spring.io/projects/spring-data-jpa/
Apache License 2.0
2.92k stars 1.39k forks source link

Investigate 'slim' Specification API #3521

Open christophstrobl opened 1 week ago

christophstrobl commented 1 week ago

Due to how CriteriaQuery and CriteriaDelete are structured in jakarta.persistence the toPredicate method of Specification can not be used for deletes because of its CriteriaQuery parameter. We should find a way to allow users to express their needs in another way than having to pass in null to satisfy the API.

Related to: #3036