我正在使用Google App Engine和JPA。我试图执行以下查询
List<String> countryList = new ArrayList<String>();
countryList.add("DE");
countryList.add("EN");
Query q = em.createQuery("select t from FOO t where t.country IN :country ");
q.setParameter("country", countryList);
我收到Google App Engine数据存储区不支持IN Opperator的例外情况。有没有人知道合适的替代方案?
此致
迈克尔