我想将下面的查询转换为 hql 以返回我,List<Article>
因为使用 createSqlQuery 是不可能的,我必须手动转换结果:
这是 sql 查询:
Query query = getSessionFactory().getCurrentSession().createSQLQuery(
"select *
from article
where articleID in (select articleID
from article_depot
where depotID = "+depotID+")"
);
先感谢您