gpt4 book ai didi

grails - 如何使用in子句 'in'和grails.gorm.DetachedCriteria?

转载 作者:行者123 更新时间:2023-12-02 14:02:48 24 4
gpt4 key购买 nike

在Grails DetachedCriteria中可以使用'in'条件吗?

这就是我所拥有的

def query = new DetachedCriteria(DomainObject)

// list is actually built up from another query,
// but for this example I will use a predefined list
query.where { 'in' 'id', [4L, 5L, 9L] }

def count = query.count()

我看到的是,该计数(您希望是3)实际上只是整个DomainObject表。

如何使该查询起作用?

最佳答案

尝试将where的结果分配给查询:

query = query.where { 'in' 'id', [4L, 5L, 9L] }

关于grails - 如何使用in子句 'in'和grails.gorm.DetachedCriteria?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16486355/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com