Используя CriteriaBuilder, как выбрать объект A и имена из объекта B, с помощью конструкции CriteriaBuilder?
Сущность A
public class EntityA {
private Long id;
@OneToMany(mappedBy = "entityA", fetch = FetchType.LAZY)
private List<EntityB> entitiesB;
//get and set
}
Сущность B
public class EntityB {
private Long id;
private String name;
@ManyToOne
private EntityA entityA;
//get and set
}