在 jpa 2 Criteria API 中选择特定列?
有没有办法使用 JPA 2 Criteria API 选择特定列?
以下是目标 SQL 语句:
SELECT column1, column2 FROM MyTableThatHasMultipleColumns
使用 Hibernate 的 Criteria API,可以使用投影来完成此操作,是否有与 JPA 2 Criteria 规范等效的内容?
Is there a way to select specific column using the JPA 2 Criteria API?
The following is the target SQL Statement:
SELECT column1, column2 FROM MyTableThatHasMultipleColumns
With Hibernate's Criteria API this can be done using Projections, is there an equivalent to the JPA 2 Criteria Specification?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的,确实如此。您需要使用 select() 方法。来自 openJPA 手册:
Yes, it does. The select() method is what you need to use. From the openJPA manual: