I'm trying to automatically create a Spring Data method based on name which would do
delete from USER_ROLES_T where identifier = :identifier and roleId in (:roleIds)
If I didn't have the IN, it would be straightforward -- this is working:
void deleteByIdentifierAndRoleId(String identifier, long roleId);
But how to wire the IN into the name without going through annotations?