querydsl/querydsl-scala
Timo Westkämper 056b6e15da added comments
2011-02-28 19:27:22 +00:00
..
src added comments 2011-02-28 19:27:22 +00:00
pom.xml improved Scala domain serialization 2011-02-27 20:41:03 +00:00
readme.txt 2010-10-05 18:15:03 +00:00
TODO.txt 2011-02-28 14:54: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
...