querydsl/querydsl-scala
2011-04-20 07:36:21 +00:00
..
src added test for single method 2011-04-20 07:36:21 +00:00
pom.xml updated version to 2.2.0-beta3-SNAPSHOT 2011-04-07 07:04:56 +00:00
readme.txt 2010-10-05 18:15:03 +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%")




// query from (person) where (person.age < 5) unique (person.firstName);
               RelationalPath Predicate               Expression
               
* any    -> Expression               
               
* any    -> RelationalPath

* String -> StringFunctions
* Number -> NumberFunctions
...