ColdBox's ORM services have always been a very compelling part of the framework for those using ORM in their applications. The provide you with an automatic, extendable service layer for an ORM entity complete with common methods, pagination and really sweet syntactical sugar such as dynamic finders:
user = userService.findByLastName("Majano");
users = userService.findAllByLastLoginBetween( "01/01/2014", "01/01/2015" );
count = userService.countByLastLoginGreaterThan( "01/01/2013" );
ColdFusion (Adobe) is a flavor of CFML, also referred to as ...
