我可以在 Groovy 和 Grails 中同时使用 IN 和 findBy 吗?
我一直在试图弄清楚如何做一些事情,
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
假设您的域类有一个名为 configId 的字段,则以下内容应该执行您想要的操作:
Assuming your domain class has a field named configId, the following should do what you want: