http://symfony.com/doc/2.0/cookbook/doc ... ering.html
After running doctrine:mapping:convert, it says then...
If you have oneToMany relationships between your entities, you will need to edit the generated xml or yml files to add a section on the specific entities for oneToMany defining the inversedBy and the mappedBy pieces.
Then after running doctrine:mapping:import, it says...
The most impressive thing is that it also discovered the relationship with the BlogPost entity class based on the foreign key constraint.
I'm confused. Do these two statements contradict? The first one is telling me I'll need to manually edit in the relationships. The second one is saying that doctrine "impressively discovers" the relationships. Are they talking about the relationship that I had to explicitly indicate or some other relationship? Bottom line I need to know exactly when doctrine can detect the relationship and when I'll need to edit that into the xml, assuming I always have a foreign key defined.
Thanks.
