我正在使用休眠版本 4.2
我有 2 个实体。
@Entity
public class A {
Long Id;
@ManyToOne
B b;
}
@Entity
public class B {
Long Id;
//There is no relation back here with any annotations to A, and can't add a @OneToMany
}
是否可以使用 Hibernate Criteria 进行查询以获得如下所示的结果。
List<Map<B,List<A>>>
? 不管是加入还是选择。
例如我想要的结果:
A.id B.id
1 1,2,3,4
2
3 5
4 7
5
//三连