querydsl/querydsl-scala
Timo Westkämper 31ffa42e91
2010-09-19 20:56:33 +00:00
..
src 2010-09-19 20:56:33 +00:00
pom.xml 2010-09-19 18:41:25 +00:00
readme.txt added tests 2010-09-18 15:11:09 +00:00

Naming options :

Caps start : (domainType.firstName Like "An%") And (domainType.firstName Like "Be%")

Full caps  : (domainType.firstName LIKE "An%") AND (domainType.firstName LIKE "Be%")

_          : (domainType.firstName _like "An%") _and (domainType.firstName _like "Be%")

_          : (domainType.firstName like_ "An%") and_ (domainType.firstName like_ "Be%")

$          : (domainType.firstName $like "An%") $and (domainType.firstName $like "Be%")


TODO :

* Resolve paths in operation handling as well