plus, jOOQ looks really really like SQL, while squ...
# server
g
plus, jOOQ looks really really like SQL, while squash apparently uses some sort of DSL for at least some things (e.g.
where { Citizens.id eq "eugene" }
)
o
Interesting, what looks exactly like SQL in JOOQ in the same place?
What I see is this:
Copy code
where(BOOK.AUTHOR_ID.eq(1).and(
             BOOK.TITLE.eq("1984")))
pretty much the same, except that you don’t have infix functions and have to wrap complex expressions in parenthesis
👍 1