I want obtain the relations with two tables.

This is my schema.yml

Oferta:
  columns:
    titol: { type: string(50), notnull: true }
    sub_titol: { type: text }
    data_inici: { type: date }
    data_fi: { type: date }

Opcions:
  columns:
    oferta_id: { type: integer, notnull: true }
    descripco: { type: string(150), notnull: true }
    preu: { type: string(20), notnull: flase }
  relations:
    Oferta: {onDelete: CASCADE, local: oferta_id, foreign: id, foreignAlias: Opcions_FK}

The are this method: * @method Doctrine_Collection getOpcionsFK() Returns the current record's "Opcions_FK" collection

And i have this code:

foreach ($ofertes as $oferta) { 


     echo $oferta->getId();
     $opcions = new Opcions(); 
    $opcions = $oferta->getOpcionsFK(); //this line do a error Unknown record property / related component "opcions_fk" on "Oferta"


}

The error:

public function filterGet(Doctrine_Record $record, $name)

{

    throw new Doctrine_Record_UnknownPropertyException(sprintf('Unknown record property / related component "%s" on "%s"', $name, get_class($record)));

}

}

Someone know what don't runs it?

Thanks

Regards

link|improve this question

61% accept rate
could you post the complete error. Gràcies ;) – Andreu Heineken Jan 31 at 18:23
also: is the method getOpcionsFK autogenerated or defined by yourself? if defined by yoursef, could you show it? – Andreu Heineken Jan 31 at 18:28
is autogenerated. thanks – Marc Morales Valldepérez Jan 31 at 18:30
the only thing that could cause the error is that the $oferta variable is not an instance of the class Oferta. Can you check this? – Andreu Heineken Jan 31 at 18:38
public function executeIndex(sfWebRequest $request) { $this->ofertes = Doctrine_Core::getTable('oferta')->createQuery("a")->execute(); } – Marc Morales Valldepérez Jan 31 at 18:42
show 2 more comments
feedback

2 Answers

up vote 1 down vote accepted

The way you name your foreignAlias "Opcions_FK" with uppercase ("K") and underscore may confuse Doctrine. Try to access directly to the property Opcions_FK of your Oferta:

foreach ($ofertes as $oferta) { 

   echo $oferta->getId();

   foreach($oferta->Opcions_FK as $opcions){

       echo $opcions->getOfertaId();

   } 

}
link|improve this answer
feedback

@method Doctrine_Collection getOpcionsFK() Returns the current record's "Opcions_FK" collection

Try:

foreach ($ofertes as $oferta) { 

  echo $oferta->getId();

     foreach($oferta->getOpcionsFK() as $options){

       echo $options-> getOfertaId();
    } 
}
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.