Shift hasMany Assignment
Assignment belongsTo Person, Shift
Person hasMany Assignment

So if I do this:

$this->Shift->find('all', array(
    'contain' => 'Assignment.Person'
));

I get something like this:

Array
(
    [0] => Array
        (
            [Shift] => Array
                (
                    [id] => 1
                    etc...
            [Assignment] => Array
                (
                    [0] => Array
                        (
                            [id] => 1
                            [person_id] => 1
                            [shift_id] => 1
                            etc...
                            [Person] => Array
                                (
                                    [id] => 1
                                    [name] => Shantam
                                    etc...
                                )
                        )
                    [1] => Array
                        (
                            [id] => 2
                            [person_id] => 2
                            [shift_id] => 1
                            etc...
                            [Person] => Array
                                (
                                    [id] => 2
                                    [name] => Alix
                                    etc...
                                )
                        )
                    etc....
                )
        )
)

So there's only ever one Person per Assignment. How can I order the
Assignments by Person.name?

Thanks,
Jason


Check out the new CakePHP Questions site http://cakeqs.org and help others with 
their CakePHP related questions.

You received this message because you are subscribed to the Google Groups 
"CakePHP" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected] For more options, visit this group at 
http://groups.google.com/group/cake-php?hl=en

Reply via email to