在 jpa 2 Criteria API 中选择特定列?

发布于 2024-09-14 08:57:37 字数 229 浏览 4 评论 0原文

有没有办法使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

晨曦慕雪 2024-09-21 08:57:37

是的,确实如此。您需要使用 select() 方法。来自 openJPA 手册:

select() 方法定义查询的结果。如果未指定,则假定选择的投影是根域对象。但是,您可以将选定的投影显式指定为列表:qdef.select(customer.get(Customer_.name), order.get(Order_.status));

Yes, it does. The select() method is what you need to use. From the openJPA manual:

The select() method defines the result of the query. If left unspecified, the select projection is assumed to be the root domain object. However, you can specify the selected projections explicitly as a list: qdef.select(customer.get(Customer_.name), order.get(Order_.status));

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文