update Entity e set e.booleanField = not e.booleanField where e.id = ?1;
不幸的是,“QuerySyntaxException:意外令牌:不接近……”被抛出.
我的问题是:是否有一些支持这种表达式的hibernate一元运算符?还是任何众所周知的技巧?
sql支持这样的查询(postgresql):
update entity_table set booleanField = not(booleanField);