specification-arg-resolver
specification-arg-resolver copied to clipboard
Use one @Join alias for multiple @Spec
I have a problem with:
It creates query with two joins for getting date
inner join timetables t0 .....
inner join timetables t1 ....
......
where
t0.startTime = ?
and t1.endTime = ?
But I need to get query like
inner join timetables t0 ....
......
where
t0.startTime = ?
and t0.endTime = ?
in fact this error occurs for every where condition of joined entity - so we have not @And but @Or
I have the same problem
Do we have any solution for this issue?
I have the same problem. Any solution or alternative for this please?
This is the same issue than https://github.com/tkaczmarzyk/specification-arg-resolver/issues/112 and it seems to have a solution but the merge conflicts of pull request had not been solved.
@rishisha19 @YomnaFekry @Meephistoo @MikLay v2.9.0 has been released today and it contains a fix for this. Thank you for patience.