在Hibernate JPA中使用类时找不到地址映射

时间:2018-08-05 09:10:38

标签: hibernate jpa hibernate-mapping jpql

@entity class Emp { 
   @ElementCollection @Collection table(name=adress); 
   List <Address> adress
}

我有一个Emp类,其中Address是收集表。现在我要编写hql查询,以从不是实体表的地址表中删除记录列表。

所以我写

Typedquery query=entitymanager.createquery (delete from address where emp id in (:list of id); Int I= query.executeUpdate():

然后我得到一条错误消息,提示未找到地址映射语法错误异常

我该如何解决这个问题?

0 个答案:

没有答案