table: USERS
| id | name | city_id |
| 1 | jonh | 1 |
table: CITY
| id | city_ name |
| 1 | London |
в действии.класса:
$this->user_list = Doctrine::getTable('Users')
->createQuery('a')
->execute();
и это генерирует:
$user_lists->getId();
$user_lists->getName();
$user_lists->getCityId();
| 1 | john | 1 |
как я могу сделать:
| 1 | jonh | London |
?
я делаю в UsersTableClass:
public function getCityName($id) {
$q = $this->createQuery('j')
->select('u.name, c.city_name')
->from('Users u')
->where('city_id = ?', $id)
->leftJoin('u.city c');
return $q->fetchOne();
}
$user_lists->getId();
$city_name;
$user_lists->getCityId();
и в action.class:
$this->user_list = Doctrine::getTable('Users')
->createQuery('a')
->execute();
$this->city_name = Doctrine::getTable('Users')->getCityName($this->user_list->getCityId());
тогда у меня ошибка:
Неустранимая ошибкаВызов неопределенного метода Doctrine_Collection :: getCityId ()