gpt4 book ai didi

java - 有什么方法可以仅使用 ID 在不相关的 **表** 或 **实体** 上使用左连接吗?在标准生成器中

转载 作者:行者123 更新时间:2023-12-01 22:14:00 25 4
gpt4 key购买 nike

有什么方法可以仅使用 ID 在不相关的实体 上使用左连接吗?在标准生成器中

class A (
val id: UUID
val message: String
)

class B (
val id: UUID
val a_id: UUID,
val type: Boolean
)

是否有任何东西可以使用标准构建器来构建这样的东西?或者有什么建议吗?

Select a, b from A a left join B b on a.a_id = b.id

最佳答案

这里引用了Java Persistence with Hibernate一书中的内容:

JPA and Hibernate don’t support arbitrary outer joins without a mapped entity association or collection.

根据您的要求,您应该回退到 native SQL。

关于java - 有什么方法可以仅使用 ID 在不相关的 **表** 或 **实体** 上使用左连接吗?在标准生成器中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58640239/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com