我有一段这样的感情
class Foo {
static hasMany = [bars: Bar, things: Thing]
}
class Bar {
// Has nothing to tie it back to Foo or anything else of importance
}
class Thing {
// Has nothing to tie it back to Foo or anything else of importance
}
我有一个Thing
的示例。我想获取与Foo
的所有示例关联的Bar
的所有示例,而Foo
的所有示例又与我拥有的Thing
的示例关联。
我已经多次使用Grails executeQuery
方法,但是查询不起作用。
下面是一个工作查询,它将获取与Bar
示例相关的所有Foo
示例。我希望我需要的查询看起来非常相似,我只是在HQL连接方面遇到了问题。
SELECT DISTINCT f FROM Foo f INNER JOIN f.bars bars WHERE bars =:bars
1条答案
按热度按时间3vpjnl9f1#
Grails应该支持设置参数,您基本上需要将id数组传递给查询。查询的最后一部分应该计算为
(1,2,3,4)
,其中1、2、3、4是有效对象的id。