我是hibernate Search的新手,我发现很难形成Hibernateserach查询。我需要使用 IN 运算符来 List the String in Hibernate query 。谁能帮我解决这个问题。我当前的查询看起来像这样
String querystring="country:"+profile.getCountry()+" AND religion:"+profile.getReligion()+" AND caste:"+profile.getCaste()+" AND gender:"+profile.getGender()+"AND profession : "+professions+" AND age:["+profile.getFromage()+" TO "+profile.getToage()+"]" ;
这里是专业是一个字符串列表。
问候, 阿伦