querydsl/querydsl-scala
Timo Westkämper d984801c81
2010-09-19 16:13:08 +00:00
..
src 2010-09-19 16:13:08 +00:00
pom.xml renamed jdoql module to jdo 2010-09-18 15:47:24 +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