假设我有两个实体:
@Entity
public class A {
@Id
private int id;
@ManyToOne
private B b;
//more attributes
}
@Entity
public class B {
@Id
private int id;
}
因此,A的表具有作为
b_id
的列作为外键。现在,我想根据其他字段上的某些条件仅选择
b_id
。如何使用条件查询来做到这一点?我试着做下面的抛出IllegalArgumentException说
"Unable to locate Attribute with the given name [b_id] on this ManagedType [A]"
CriteriaQuery<Integer> criteriaQuery = criteriaBuilder.createQuery(Integer.class);
Root<A> root = criteriaQuery.from(A.class);
Path<Integer> bId = root.get("b_id");
//building the criteria
criteriaQuery.select(bId);
最佳答案
您需要加入B
,然后获取id
:
Path<Integer> bId = root.join("b").get("id");
关于java - 如何使用条件查询仅选择外键值?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/35450072/