Hi,
why not work "order" function?
| CODE |
| $this->paginate = array( 'limit' => 5, 'order' => array( 'User.name' => 'desc' ), 'fields' => array('Post.id', 'Post.title', 'User.name AS aut_name'), 'joins' => array( array( 'table' =>'users', 'alias' =>'User', 'type' =>'LEFT', 'conditions' => array( 'Post.user_id = User.user_id' ) ) ) ); $posts = $this->paginate(); $this->set(compact('posts')); |