The alternative is, that everybody is implementing these fundamentals for himself.
--
You received this message because you are subscribed to the Google Groups "play-framework" group.
To unsubscribe from this group and stop receiving emails from it, send an email to play-framewor...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.
looks actually like the concept needed in Play2@JPA!! Thanks a lot for your input!
The only thing we would add is a possibility to add criterias in brackets and custom criterias like:
- brackets:
WHERE/AND ( obj.name LIKE '%abc%' OR obj.description LIKE '%abc%' OR obj.comment LIKE '%abc%')
In an API like where().or(new ..., new...., new..)
- custom predefined criterias:
WHERE/AND (obj.organisation IN ( SELECT organisation FROM abc WHERE ...)
In an API like where().addStringCondition(....)
What do you think?