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.
我有一个模型类,每条记录都有一个 id。我有一个我想从该表中搜索的 id 列表。
我是否需要动态构建 SQL 语句并将其传递给 Finder 对象,或者有更好的方法吗?
尝试使用构建查询Expr.in(String propertyName, Collection<?> values)
Expr.in(String propertyName, Collection<?> values)
其他选项是:Expr.in(String propertyName, Object[] values)或Expr.in(String propertyName, Query<?> subQuery)
Expr.in(String propertyName, Object[] values)
Expr.in(String propertyName, Query<?> subQuery)
API 参考。