I want to pass multiple values in where clause,for that i am passing the array but the result returning empty.
List<String> stringlist=new ArrayList<String>(); stringlist.add("54aca811edc5a179efd28e55"); stringlist.add("54aca79aedc5158d25a93f42");
Query q = em
.createQuery("Select s from StoreProductMaster s where s.store_id = :ids");
q.setParameter("ids",stringlist);
List<StoreProductMaster> tweets = q.getResultList();
Help me