Grails GORM 使用 HQL 查询关联的多方

发布于 2025-01-05 11:29:22 字数 420 浏览 1 评论 0原文

我的课程和类别之间存在一对多关系,

class Course {

    String code     

    static hasMany = [categories:CourseCategory]
}


Class CourseCategory {

    String name
}

我需要根据类别列表查询课程。我已经尝试过查询

courseInstanceList = Course.findAll("from Course c inner join c.categories cts where cts.id in :categoryIds",[categoryIds:categoryIds])

,但此查询返回课程和课程类别 - 只是想知道如何创建查询以仅返回课程?

I have a one to many relationship between a Course and Categories

class Course {

    String code     

    static hasMany = [categories:CourseCategory]
}


Class CourseCategory {

    String name
}

I need to query courses based on a list of categories. I have tried the query

courseInstanceList = Course.findAll("from Course c inner join c.categories cts where cts.id in :categoryIds",[categoryIds:categoryIds])

But this query returns both Courses and CourseCategories - just wondering how to create a query to just return courses?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

蔚蓝源自深海 2025-01-12 11:29:22

您可以使用 createCriteria 方法:

def c = Course.createCriteria()
println (c.listDistinct {
    categories {
        'in' 'id', [1L, 2L, 3L]
    }
})

You can use the createCriteria method:

def c = Course.createCriteria()
println (c.listDistinct {
    categories {
        'in' 'id', [1L, 2L, 3L]
    }
})
撩心不撩汉 2025-01-12 11:29:22

差不多三年过去了……)

无论如何,答案是:

courseInstanceList = Course.findAll("SELECT distinct c from Course c inner join c.categories cts where cts.id in :categoryIds",[categoryIds:categoryIds])

只获取类别:

courseInstanceList = Course.findAll("SELECT cts from Course c inner join c.categories cts where cts.id in :categoryIds",[categoryIds:categoryIds])

Almost three years past ... )

Anyway here's the answer:

courseInstanceList = Course.findAll("SELECT distinct c from Course c inner join c.categories cts where cts.id in :categoryIds",[categoryIds:categoryIds])

to get just categories:

courseInstanceList = Course.findAll("SELECT cts from Course c inner join c.categories cts where cts.id in :categoryIds",[categoryIds:categoryIds])
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文