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:


from Issue
where _project._private=false

Submitted by Sander Vermolen on 9 December 2010 at 14:08

Log in to post comments