标签: hibernate join
您好我想在hql中选择我的实体
select ent from Entity as ent where ( ent.author.userID = :userID OR ent.userID = :userID )
但如果未设置ent.author,但设置了ent.userID,我也不会得到任何结果,因为无法加入ent.author。
任何想法如何查询类似的东西?