com.github.oehme.xtend:xtend-querydsl

A small Xtend wrapper for the awesome QueryDsl library


License
MIT

Documentation

xtend-querydsl

A small Xtend wrapper for the awesome QueryDsl library.

Build Status Download

Features

This wrapper mainly adds operator overloads for expressions. Instead of writing

    person.firstName.eq("Stefan").and(person.age.gt(20))

You can now write

    person.firstName == "Stefan" && person.age > 20