命名查询中的 Grails GORM 计数函数
我正在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
请查看
createCriteria
doc 用于“集合属性”操作。在您的情况下,它是isEmpty
:对于通用大小限制,它是
sizeEq
、sizeLe
等等。Please look in
createCriteria
doc for "collection property" operations. In your case, it isisEmpty
:For generic size restriction, it is
sizeEq
,sizeLe
and so on.