当某些值为空时如何在条件查询中使用合并

时间:2018-11-22 21:36:30

标签: jpa criteria coalesce

如何使用条件在下面编写查询?

this.entityManager
    .createQuery("from MyFile f where coalesce (f.downloaded, false) = :downloaded", MyFile.class)
    .setParameter("downloaded", true)
    .getResultList();

0 个答案:

没有答案