Ik denk dat je gewoon
. moet gebruiken IN :stringId
in plaats van
IN (:stringId)
Voor JPA
namedQuery.setParameter("stringId", strIds);
is correct, maar voor Hibernate moet u
. gebruikennamedQuery.setParameterList("stringId", strIds);
Ik denk dat je gewoon
. moet gebruiken IN :stringId
in plaats van
IN (:stringId)
Voor JPA
namedQuery.setParameter("stringId", strIds);
is correct, maar voor Hibernate moet u
. gebruikennamedQuery.setParameterList("stringId", strIds);