命名查询中的 Grails GORM 计数函数

发布于 2024-11-19 05:09:45 字数 354 浏览 2 评论 0原文

我正在 Grails 中为我的域类编写一些命名查询,但遇到了阻碍。

给定以下域类:

class Contributor {
    // evals is a collection of another domain class
    def evals

    static namedQueries = {
        hasNoEvals {
            // Something like this...
            evals.size() == 0
        }
    }
}

任何人都可以帮助我使用选择没有评估的贡献者所需的语法吗?

谢谢。

I'm writing some named queries for my domain classes in Grails and I've hit a blocker.

Given the following domain class:

class Contributor {
    // evals is a collection of another domain class
    def evals

    static namedQueries = {
        hasNoEvals {
            // Something like this...
            evals.size() == 0
        }
    }
}

Can anyone help with the syntax I need to select the Contributors who have no Evals?

Thanks.

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

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

发布评论

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

评论(1

淤浪 2024-11-26 05:09:45

请查看 createCriteria doc 用于“集合属性”操作。在您的情况下,它是 isEmpty

static namedQueries = {
    hasNoEvals {
        isEmpty('evals')
    }
}

对于通用大小限制,它是 sizeEqsizeLe 等等。

Please look in createCriteria doc for "collection property" operations. In your case, it is isEmpty:

static namedQueries = {
    hasNoEvals {
        isEmpty('evals')
    }
}

For generic size restriction, it is sizeEq, sizeLe and so on.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文