gpt4 book ai didi

java - 如何在Ebean中实现 "not in"谓词?

转载 作者:行者123 更新时间:2023-12-02 02:57:08 35 4
gpt4 key购买 nike

我有一个包含一些 id 的列表,我希望我的 ebean 查询排除这些 id。所以基本上我需要在 ebean 中使用“not in”谓词,就像 sql 一样,但遗憾的是找不到。还有其他方法可以实现这一目标吗?提前致谢。

最佳答案

有一个not表达式,它可以包含in表达式:

Ebean.find(MyClass.class).where()
.not(Expr.in("id", new Long[]{1L,2L,3L})).findList();

关于java - 如何在Ebean中实现 "not in"谓词?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42907498/

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