Limit Property Dont Act On Cdbcriteria

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?

See this

http://www.yiiframework.com/forum/index.php/topic/19491-limit-in-cactivedataprovider/