Questions tagged [mysema]
16 questions
0
votes
0 answers
Integrate BooleanExpression into SQL query
this is my situation :
BooleanExpression be = //a certain BooleanExpression;
@Autowired
private EntityManager em;
List result = (List) em.createQuery("select x from y where" + be);
What i would like to do is to take my…
user6404301