I have a normal query with IN clause, to which i want to convert into a parametric query. I am using Hibernate.
i have an
String array, "actorIdArr" and a Long type "iterID";
My query is:-
from UseCaseTaskEntity as en where en.useCaseEntity.iterationEntity.IterationID = iterID"
+ " and en.OwnerEntity.ProjectActorID in ( actorIdArr)";
I dont know how to convert it into parametric query. please help me.