Negation in query causes exception: syntax error in HQL
Using a negation (not) in a query, e.g.:
from Issue
where not( _project._private)causes a syntax error on the generated Hibernate code. The query itself is deemed correct by WebDSL though. A workaround is the following:
Submitted by Sander Vermolen on 9 December 2010 at 14:08
from Issue
where _project._private=false
Log in to post comments