Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有两个实体:
我发现的所有使用条件和连接的例子都是关于从汽车到客户的,但我需要反过来:
我想选择拥有具有给定牌照号码的汽车的客户。我的问题是如何从客户表连接到汽车表,因为外键在另一个表中。
您需要有一个双向关系才能在 Criteria 中做到这一点。确保创建与Carin的 *ToMany 关系Customer。然后您可以简单地选择列表不为空的Customer位置。Car请注意,这不会更改数据库架构(除非您没有正确执行映射),并且 hibernate 将使用表Customer中的 fk on Car。
Car
Customer