在 Pro JPA 2 (Apress) 书中,我看到了类似的例子,
EntityManager em;
Long count = em.createNamedQuery(countQueryName, Long.class).getSingleResult();
但是,希望应用于 JPA 2.0的api将语法显示为
createNamedQuery(String name)
Parameters:
name - the name of a query defined in metadata
用一个参数。这本书广泛使用了这种类型,所以我错过了什么?
谢谢。