我正在与Person.java.
此休眠实体没有标记任何字段@Field.
另一个类Group.java
是具有标记的字段的实体@Field
。
@Field
private int id;
在这个遗留代码中,我看到了对 Group 的查询:
getEntityManager().createQuery("delete from group g where g.id =
:inputId").setParameter("inputId", givenId).getSingleResult();
但是,我不确定如何对没有字段的实体进行休眠查询。
谢谢,凯文