我可以在 Groovy 和 Grails 中同时使用 IN 和 findBy 吗?

发布于 2024-09-30 21:57:58 字数 271 浏览 3 评论 0原文

我一直在试图弄清楚如何做一些事情,

SELECT * FROM domain WHERE config_id IN (1, 2, 3)

比如使用 Grails 的 findBy 技术。还没有真正弄清楚如何,这甚至可能吗?我希望有类似的东西

Domain.findByConfigIn(configList)

,但这行不通。任何人都知道如何做到这一点,或者即使可能吗?

I've been trying to figure out how to do something like

SELECT * FROM domain WHERE config_id IN (1, 2, 3)

when using the nice findBy technique of Grails. Haven't really figured out how yet though, is it even possible? I was hoping for something like

Domain.findByConfigIn(configList)

but that doesn't work. Anyone knows how to do this, or even if it's possible?

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

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

发布评论

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

评论(1

两人的回忆 2024-10-07 21:57:58

假设您的域类有一个名为 configId 的字段,则以下内容应该执行您想要的操作:

Domain.findAllByConfigIdInList(configList)

Assuming your domain class has a field named configId, the following should do what you want:

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