淘先锋技术网

首页 1 2 3 4 5 6 7

我在读这个例子:

EntityManager em = ...

CriteriaBuilder qb = em.getCriteriaBuilder();

CriteriaQuery c = qb.createQuery(Person.class);

Root p = c.from(Person.class);

Predicate condition = qb.gt(p.get(Person_.age), 20);

// ^^ --- this one

c.where(condition);

TypedQuery q = em.createQuery(c);

List result = q.getResultList();

我不知道这里突出了什么意思?

由于下划线是一个类名的有效部分,我不明白为什么这可以在JPA中使用.

我在我的代码中检查了一个现有的实体,当然我的类不能被解析为ClassName_