Grails createCriteria:通过作为空域类实例的字段查找对象
我在 Grails 的 createCriteria 中看到一些意外行为。我有一个如下所示的域类:
MyDomainClass {
AnotherDomainClass anotherDomainClass
static constraints = {
anotherDomainClass(nullable:true)
}
}
我想查找 MyDomainClass 的所有实例,其中 anotherDomainClass 为 null。所以我这样做:
return MyDomainClass.createCriteria().list {
eq('anotherDomainClass', null)
}
但是,我什么也没得到。
我做错了什么?我可以看到有些数据库条目的 ANOTHERDOMAINCLASS_ID 列确实为空(或空白,我不知道)。
我可以创建一个直接引用 ANOTHERDOMAINCLASS_ID 列的查询,但我还没有找到方法。
谢谢!
I'm seeing some unexpected behavior in Grails' createCriteria. I have a domain class that looks like this:
MyDomainClass {
AnotherDomainClass anotherDomainClass
static constraints = {
anotherDomainClass(nullable:true)
}
}
I want to find all instances of MyDomainClass where anotherDomainClass is null. So I do this:
return MyDomainClass.createCriteria().list {
eq('anotherDomainClass', null)
}
However, I get nothing back.
What am I doing wrong? I can see there are database entries where the ANOTHERDOMAINCLASS_ID column is indeed null (or blank, I can't tell).
I'd be fine creating a query that references the ANOTHERDOMAINCLASS_ID column directly, but I haven't found a way yet.
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您可以使用 isNull 而不是使用 eq
这是一个很好的参考 HibernateCriteriaBuilder Javadoc也是。
Instead of using eq you can use the isNull
Here's a good reference HibernateCriteriaBuilder Javadoc too.
如果您尝试
isNull
而不是eq
会发生什么?编辑:实际上可能是
isEmpty
而不是isNull
。What happens if you try
isNull
instead ofeq
?EDIT: Could actually be
isEmpty
instead ofisNull
.这不是真正的答案,但我暂时的解决方法是从数据库中检索所有对象并在应用程序层中进行过滤,如下所示:
It's not a real answer, but my workaround for the time being is to retrieve all the objects from the database and filter in the app tier, like this: