CakePHP 2.x GROUP BY within Containable

2019-05-16 08:56发布

问题:

I am going nuts trying to find a good solution, either using the set::extract() or something. I want to add a GROUP BY within my containable:

$params = array(
    'conditions'=>array(
        'Project.id'=>$ProjectId
    ),
    'contain'=>array(
        //Gets the User Who owns the Project
        'User'=>$user,
        'Bid'=>array(
            //The User Who owns the Bid
            'User'=>$user
        ),
        'ProjectType',
        'Os',
        'Comment'=>array(
            'To'=>$user,
            'From'=>$user,
            'group'=>"Comment.from_id"
        ),
    ),
);
//debug($params);
return $this->find('first',$params);

I do not want to hack to get around this issue - is there an easier way to do this?

回答1:

For anyone else that stumbles on this via Google, it looks as though GROUP BY conditions for containable queries aren't supported in Cake 1 or 2, so a manual join would be required if grouping is a must.



回答2:

You can do conditions within contained items:

'contain'=>array(
    'Comment'=>array(
        'To'=>$user,
        'From'=>$user,
        'conditions'=>array(
            'group'=>"Comment.from_id"
        ),
     ),
)

http://book.cakephp.org/view/1323/Containable