Могу ли я объединить 2 таблицы с CriteriaBuilder?
Вот таблицы:
@Entity
public class People {
@Id
@GenerateValue
private Integer id;
private String Name;
}
@Entity
public class Phone {
@Id
@GeneratedValue
private Integer id;
private String PhoneNumber;
@ManyToOne
@JoinColumn(name = "people_id")
private People people;
Как я могу реализовать следующий запрос с Hibernate CriteriaBuilder?
select * from People b1 inner join Phone b2 on b1.id = b2.people_id where b2.PhoneNumber = xxxxxx;