Извините, но я не понимаю доктрины.Я думал, что получил, но думаю, что нет, потому что появляется следующая ошибка:
Unknown relation alias Artikelkategorie
со следующим schema.yml:
Artikelkategorie:
connection: doctrine
tableName: artikelkategorie
columns:
id:
type: integer(4)
fixed: false
unsigned: true
primary: true
autoincrement: true
superid:
type: integer(4)
fixed: false
unsigned: true
primary: false
notnull: true
autoincrement: false
branche_id:
type: integer(4)
fixed: false
unsigned: true
primary: false
notnull: true
autoincrement: false
Portfolio:
connection: doctrine
tableName: portfolio
columns:
artikel_id:
type: integer(4)
fixed: false
unsigned: true
primary: true
autoincrement: false
markt_id:
type: integer(4)
fixed: false
unsigned: true
primary: true
autoincrement: false
relations:
Artikel:
local: id
foreign: zustand_id
type: many
Portfolio:
local: id
foreign: zustand_id
type: many
После моего action.class.php (short)
$this->unt_cat_list = Doctrine_Query::create()
->select('p.*, a.*')
->from('portfolio p')
->innerJoin('p.Artikelkategorie a')
->Where('p.markt_id = ? ', array(2))
->Where('a.superid = ?', array(1))
->Where('a.branche_id = ?', array(2))
->execute();
И мой php-код, но я думаю, что он бесполезен:
<?php foreach ($unt_cat_list as $cat_list1): ?>
<a href="<?php echo url_for('shop/category') . '/' . 'id/' . $cat_list1->getMarktId()?>"><?php echo $cat_list1->getMarktId() ?></a>
<?php endforeach; ?>
Почему возникает неизвестное отношение?Что я делаю неправильно в запросе action.class.php?
Большое спасибо !!!
Craphunter