gpt4 book ai didi

hibernate - GORM - 在 Grails 中查询一对多关联

转载 作者:行者123 更新时间:2023-12-02 23:44:39 25 4
gpt4 key购买 nike

我有类(class)域

class Course {
String name

static hasMany = [categories: Category]
}

类别域类

class Category {
String name
}

所以这里一个类(class)可以有多个类别。

现在我想查找类别为 4 的所有类(class)

我尝试编写 HQL 查询:

def courseList = Course.findAll("from Course as c where c.categories.id in (4)")

这给出了一个错误。

如何编写正确的 HQL 或正确的 withCriteria 查询?

最佳答案

您可以使用 withCriteria 查询:

Course.withCriteria { 
categories {
eq 'id', new Long(4)
}
}

关于hibernate - GORM - 在 Grails 中查询一对多关联,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15757163/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com