我想在 where 子句中传递多个值,因为我正在传递数组但结果返回空。
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();
帮我