querydsl/querydsl-scala
2010-09-21 14:47:06 +00:00
..
src Changed for-loop string concat into a map mkstring combination. 2010-09-21 14:47:06 +00:00
pom.xml Added <version>2.8</version> to pom.xml which enables proper build path configuration with Maven's Eclipse plugin. 2010-09-21 13:16:30 +00:00
readme.txt 2010-09-20 08:59:55 +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%")