在列表属性上使用没有元模型的 JPA2 标准 API
如何在不使用元模型类的情况下制定以下 JPA2 标准查询:
CriteriaBuilder cb = em.getCriteriaBuilder();
CriteriaQuery<Employee> cq = cb.createQuery(Employee.class);
Root<Employee> emp = cq.from(Employee.class);
cq.where(cb.isEmpty(emp.get(Employee_.projects)));
cq.select(emp);
我想使用:
cq.where(cb.isEmpty(emp.get("projects")));
但我无法弄清楚如何将路径转换为 cb.isEmpty 所需的表达式...
谢谢。
How can I formulate the following JPA2 criteria query without using the metamodel classes:
CriteriaBuilder cb = em.getCriteriaBuilder();
CriteriaQuery<Employee> cq = cb.createQuery(Employee.class);
Root<Employee> emp = cq.from(Employee.class);
cq.where(cb.isEmpty(emp.get(Employee_.projects)));
cq.select(emp);
I would like to use:
cq.where(cb.isEmpty(emp.get("projects")));
But I cant figure out how to convert the Path to an Expression, which is needed by cb.isEmpty...
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
试试这个:
或者,使用
Path
变量:参考
javax.persistence.criteria
APITry this:
Or, using a
Path
variable:Reference
javax.persistence.criteria
API<Y> Path<Y> Path.get(String)
: