2
我有關係,因爲在我的用戶模型如下:如何在yii中按STAT關係排序?
return array(
'images' => array(self::HAS_MANY, 'Images', 'owner_id'),
'imagesCount' => array(self::STAT, 'Images', 'owner_id', 'condition' => 'approved = 1'),
'server' => array(self::BELONGS_TO, 'Servers', 'server_id'),
);
用戶表通過owner_id相關圖像表。
圖像模式有關係,如:
return array(
'imageVotes' => array(self::HAS_MANY, 'ImageVotes', 'image_id'),
'imageTags' => array(self::HAS_MANY, 'ImageTags', 'image_id'),
'owner' => array(self::BELONGS_TO, 'Users', 'owner_id'),
'server' => array(self::BELONGS_TO, 'Servers', 'server_id'),
);
我想計算數量最多他們上傳的圖片的基礎上的傑出貢獻者。
什麼是它的CDbCriteria或CActiveDataProvider排序順序?