entitymanager - Integrate BooleanExpression into SQL query -


this situation :

booleanexpression = //a booleanexpression; @autowired private entitymanager em; list<tuple> result = (list<tuple>) em.createquery("select x y where" + be); 

what take booleanexpression , calculate "where"...any suggestion?


Comments

Popular posts from this blog

How to use SUM() in MySQL for calculated values -

loops - Spock: How to use test data with @Stepwise -