Hibernate 支持 Union 吗?

Is Union supported in Hibernate?

我想使用 UNION ALL 关键字添加两个 table。

我看到很多论坛说 hibernate 不支持 union all 。

这仍然是一个错误还是在最新版本中已解决。

您可以编写文档的 polymorphic query. Under the hood hibernate will use UNION. See also this 部分。

还没有,但我正在为 Hibernate 6.0 开发它。同时,您可以使用 Blaze-Persistence, a query builder library that works on top of JPA, which has support for this. See the documentation 获取更多信息和示例。