@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():
然后我得到一条错误消息,提示未找到地址映射语法错误异常
我该如何解决这个问题?