SomeActiveRecord::Model()->findAll("ORDER BY somefieldfield");
But is it correct to put an ORDER BY clause in a findAll like this or is there a better way to do a simple order by (without going to the trouble of creating a full criteria)
The Class Reference seems to hint at another way by passing an array to findAll() but I couldn't get it to work. An example would be helpful.
I would suggest an example of using the second method be added to the The Definitive Guide - ActiveRecord page. There's no mention at all of ordering results on the page and only one example of creating a criteria object manually and passing that.