Skip to content

Instantly share code, notes, and snippets.

View t2006036's full-sized avatar

박기현[메가존] t2006036

  • 메가존
  • 서울 시청역
View GitHub Profile
@timowest
timowest / gist:5098112
Last active March 16, 2023 23:28
Querydsl and/or examples
#1
e1.or(e2).and(e3))
creates at first an 'or' operation based on e1 and e2 and uses this 'or' operation
in a top level 'and' operation with e3 as the second operand.
Since 'and' has higher precedence than 'or' it is serialized as
(e1 or e2) and e3