I ran into a restriction problem. The code I use is as follows:
$model = PostCategory::model();
$record = $model->with(array(
'posts'=>array(
'order'=>'posts.createTime DESC',
'limit'=>3,
))->findByPK($id);
I want to limit the messages requested for paging. I also tried to add
'together'=>true
after the limit, this does not help either.
Any help is appreciated.
source
share