yii+mongo

i try to use mongodb with ext yiimongodbsuite, no idea how to make query group by and mupping results to model

any ideas?

I’m not sure the extension supports grouping out of the box so you may have to do this manually by accessing the mongodb instance via;




Yii::app()->mongodb->getDbInstance()



You could then run a map/reduce job to achieve a grouping etc…