querydsl/querydsl-scala
2011-03-21 07:06:59 +00:00
..
src replaced no-arg methods with lazy vals 2011-03-21 07:06:59 +00:00
test-output #727053 : added NEGATE operation 2011-03-05 15:01:53 +00:00
pom.xml updated version to 2.2.0-beta2-SNAPSHOT 2011-03-16 14:55:14 +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
...