在Hibernate QL中取消一元运算符

我试图使用以下hql切换布尔字段:

update Entity e set e.booleanField = not e.booleanField where e.id = ?1;

不幸的是,“QuerySyntaxException:unexpected token:not near ...”被抛出。

我的问题是:是否有一些支持这种表达式的hibernate的一元运算符? 或者任何知名的技巧?

sql支持这样的查询(postgresql):

update entity_table set booleanField = not(booleanField);

我只是使用本机SQL查询来做到这一点。


要在HQL / JPQL下切换boolean属性,相当于not一元运算符,请使用:

UPDATE entity e SET e.booleanField = (e.booleanField=false)
链接地址: http://www.djcxy.com/p/10677.html

上一篇: Negate unary operator in Hibernate QL

下一篇: Nuget: specify dependency without references being added