0
這可能是很簡單,我只是失去了一些東西,但我有兩個類Hibernate的連接查詢
Event {
String codeword;
int id;
}
而且
Person {
String codeword;
}
現在我想獲得List<Int> idList
擁有所有的id's
其中event.codeword=person.codeword
。
在Hibernate中,我想也行:
List idList = session.createQuery("Select a.id From Event a Join Person b On a.codeword=b.codeword").list().
不過,我發現了一個關聯錯誤。我沒有IDList這樣的對象來實際映射到。
於是,我試着做List eventList = ("Select a From Event a ... ")
但是,這也給了我一個映射錯誤。
我該如何做這樣的連接?
從事件event中選擇event.id,其中event.codeword = person.codeword –