我有 3 个表 - 租赁帐户、租赁、交易。每个 Lease Account 有 N 个 Lease,每个 Lease 有 N 个 Transactions。我只能对数据库进行 1 次查询 - 从 Lease Account 中选择 *,将所有这些数据作为 N 个 Lease Account 对象提取到 Java 中 - 每个 Lease Account 对象都包含一个 Lease 对象 - 每个 Lease 都包含一个 Transaction 对象。
有人可以指导我如何在 Hibernate(3.2) 中为这种场景编写一对多映射 (hbm.xml) 吗?
谢谢。