querydsl/querydsl-scala
2011-05-17 10:20:26 +00:00
..
src added tests for SQL Insert, Update and Delete 2011-05-17 10:20:26 +00:00
pom.xml added tests for SQL Insert, Update and Delete 2011-05-17 10:20:26 +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
...