3
下面的查詢應該選擇不在excludedOrgs
所有組織:「NOT IN」 與HQL和Grails
Organisation.findAll("from Organisation o where o not in elements(?)",
[excludedOrgs])
我得到的是一個org.springframework.orm.hibernate3.HibernateQueryException告訴我:expecting IDENT, found '?'
我正在使用Grails 1.3.6。
我的查詢出了什麼問題?