Hi there,
I create a data provider with as this:
public function actionTest()
{
$dataProvider=new CActiveDataProvider('Advert', array(
'criteria'=>array(
'limit'=>5,
),
));
echo $dataProvider->totalItemCount;
}
But totalitemCount is 187(total records), i want fetch only 5 records. what’s the problem?