I want to delete an entity(ies) by multiple entity properties?
I know how to do it using JPA query
(@Query
annotation).
Is It possible to do it using derived query
? How to name such method in JpaRepository
?
I want to delete an entity(ies) by multiple entity properties?
I know how to do it using JPA query
(@Query
annotation).
Is It possible to do it using derived query
? How to name such method in JpaRepository
?
It is straight forward as naming select method:
Two properties:
Three properties:
etc.