I have picked 8 of the ones that I think are good enough, and I ask people
to rate these;
https://99designs.com/contests/poll/tglnh9
Let us run this for 2-3 days, and then I will pick up the thread and we
discuss the more popular ones, for things like smaller adjustments, colors,
fonts and relati
I assume that you are referring to (from sample project)
public static Person findPersonNamed(String firstName, String lastName)
{
Operation findByFirstNameAndLastName =
PersonFinder.firstName().eq(firstName)
.and(PersonFinder.lastName().eq(lastName));
return P
Hi guys,
there is an interesting project open sourced by Goldman Sachs:
https://github.com/goldmansachs/reladomo
It is a basically a Java ORM with some pretty unique features and the Query
DSL is in some ways similar to what we are using in Apache Polygene :
Person.createPerson("Taro", "Tanaka"