read


read
or learn more

Thoughts on Object/Relational Mapping

Jun 27, 2007
Request req = new Request();

req.where.has( _name, Operator.EQUALS, "billy")
  .where.not( _age, Operator.LESS_THAN, 30)
  .sortBy( _name, <comparator>)
  .limit( 10);

Results<Person> = Dbi.process( req, Person.class);

-m

No Comments, Comment or Ping

Reply to “Thoughts on Object/Relational Mapping”