Well if your trying to get the score from the Skatepark model:

$this->Skatepark->find('all', array(
'order' => 'AVG(Rating.score)',
'limit' => 10,
'contain' => array('Rating')
));

You would need the containable behavior OR remove the contain and make
the recursive higher.

$this->Skatepark->find('all', array(
'order' => 'AVG(Rating.score)',
'limit' => 10,
'recursive' => 1
));
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"CakePHP" group.
To post to this group, send email to cake-php@googlegroups.com
To unsubscribe from this group, send email to 
cake-php+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/cake-php?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to