看看下面的例子實體:加入兩個表與Hibernate標準
Entity Child {
long id;
String name;
long parentKey;
}
Entity Parent {
long id;
String desc;
}
是否有與Hibernate條件查詢方式:
select * from Child c, Parent p
where c.parentKey = p.id and c.name = "whatever" and p.desc = "whatever"
我們主要關心的是怎麼辦跨越加入與標準兩個實體只通過長鍵與 相關聯。
假設我們不能直接在我們的孩子中提及父母。
「沒有直接提及父母在我們的孩子」意味着它是一個單向關係,從父母到孩子 – frictionlesspulley
必須是多頭?你能爲孩子創建一個Key對象嗎? – Luke