Listing 12.12. | |
| ROZDZIAŁ: | 12. Relacje n:m |
| TXT: | listing-12-12.txt |
public function get($prop)
{
if ($prop == 'ABs') {
$result = Doctrine_Query::create()
->from('B b')
->leftJoin('b.ABs a')
->where('a.a_id = ?', $this['a_id'])
->orderBy('b.kolumna')
->fetchArray();
return $result;
} else {
return parent::get($prop);
}
}