Been playing with coldbox last few days (Lovin' it)
Started using the BaseORMService, following example code from:
http://wiki.coldbox.org/wiki/Extras:BaseORMService.cfm
In the very first code example:
rc.users =
ORMService.list(entityName="User",sortBy="fname",offset=event.getValue("startrow",
1),max=20);
sortBy *should* be sortOrder, right? I was scratching my head for a
lil while until I noticed it.