gpt4 book ai didi

JPA 实体图 : which join types?

转载 作者:行者123 更新时间:2023-12-04 17:48:00 25 4
gpt4 key购买 nike

JPA实体图:例如

订单 - OrderItem - 产品

@NamedEntityGraph(name = "order", 
attributeNodes = @NamedAttributeNode(value = "orderItems", subgraph = "orderItems"),
subgraphs = @NamedSubgraph(name = "orderItems", attributeNodes = @NamedAttributeNode("product")))

为什么 order -> orderItems 和 orderItem -> product 没有 joinType?实体图中的所有连接都应该是 LEFT 连接吗?

最佳答案

EntityGraph 的目的是定义要包含在结果图中的内容。

这不会影响连接类型。因此,您的依赖项的加载方式与不使用 EntityGraph 时的加载方式相同。

关于JPA 实体图 : which join types?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47466989/

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