Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我一直在试图弄清楚如何做类似的事情
SELECT * FROM domain WHERE config_id IN (1, 2, 3)
当使用findByGrails 的优秀技术时。还没有真正弄清楚如何呢,这甚至可能吗?我希望有类似的东西
findBy
Domain.findByConfigIn(configList)
但这不起作用。任何人都知道如何做到这一点,或者即使它是可能的?
假设您的域类有一个名为configId的字段,则以下内容应该可以满足您的要求:
Domain.findAllByConfigIdInList(configList)