有人可以建议我如何使用JPA Criteria构建器API构建以下查询吗?
SELECT id,status,created_at from transactions where status='1'
and currency='USD' and appId='123' order by id
Run Code Online (Sandbox Code Playgroud)
如果我能找到一个基于作为Map<String,String>使用元模型类或任何其他方式给出的参数动态创建的解决方案,那就更好了.