Thanks, I guess I didn't explain myself clear,
I am familar with find/phql, but I want to use ORDER BY FIELD, so it always return same order I wanted.
I was after something phql support with modelManager, I guess I have to use raw query to do so.
// ORM
// Get first 100 virtual robots ordered by name
$robots = Robots::find(
array(
"type = 'virtual'",
"order" => "name",
"limit" => 100
)
);
//PHQL
$phql = "SELECT * FROM Formula\Cars ORDER BY Formula\Cars.name";
$query = $manager->createQuery($phql);
// and so on