Quantcast
Channel: Doctrine2 - using a foreign key column as a normal field - Stack Overflow
Browsing latest articles
Browse All 4 View Live

Answer by Stephen Senkomago Musoke for Doctrine2 - using a foreign key column...

Based on my experience with Doctrine 2 further elaborated here http://ssmusoke.wordpress.com/2012/03/25/doctrine2-day-3-proxies-associations-relationships/My approach is as follows:a) Have only the...

View Article



Answer by meze for Doctrine2 - using a foreign key column as a normal field

Use the entity proxy:Entity::setRelatedEntity($entityManager->getReference('RelatedEntity', $relEntId))

View Article

Answer by Ja͢ck for Doctrine2 - using a foreign key column as a normal field

I don't think this is supposed to work like how you described :)The entity you add must be a Doctrine managed object, so that means you have to load it yourself first using the find() family of methods.

View Article

Doctrine2 - using a foreign key column as a normal field

Is there a way to have something like this in doctrine:class Entity { /** * @Column(name="related_entity_id") */ private $relatedEntityId; /** * @ManyToOne(targetEntity="RelatedEntitiy") *...

View Article
Browsing latest articles
Browse All 4 View Live




Latest Images