Grails createCriteria:通过作为空域类实例的字段查找对象

发布于 2024-10-30 13:53:57 字数 553 浏览 4 评论 0原文

我在 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 技术交流群。

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

发布评论

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

评论(3

你列表最软的妹 2024-11-06 13:53:57

您可以使用 isNull 而不是使用 eq

def results = MyDomainClass.withCriteria {
    isNull('anotherDomainClass')
}

这是一个很好的参考 HibernateCriteriaBuilder Javadoc也是。

Instead of using eq you can use the isNull

def results = MyDomainClass.withCriteria {
    isNull('anotherDomainClass')
}

Here's a good reference HibernateCriteriaBuilder Javadoc too.

凌乱心跳 2024-11-06 13:53:57

如果您尝试 isNull 而不是 eq 会发生什么?

编辑:实际上可能是 isEmpty 而不是 isNull

What happens if you try isNull instead of eq?

EDIT: Could actually be isEmpty instead of isNull.

渡你暖光 2024-11-06 13:53:57

这不是真正的答案,但我暂时的解决方法是从数据库中检索所有对象并在应用程序层中进行过滤,如下所示:

MyDomainClass.list({it.anotherDomainClass == null})

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:

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