To learn about Doctrine mappings you'll have to read the Doctrine Documentation (http://docs.symfony-reloaded.org/guides/doctrine/dbal/overview.html provides a snippet which links you to the official documentation http://www.doctrine-project.org/projects/dbal/2.0/docs/en).
For the UserBundle, you have to make sure you enable mappings for your bundle (Symfony2 documentation has not been updated for it yet) as its said in: https://github.com/FriendsOfSymfony/UserBundle/blob/master/Resources/doc/index.rst <https://github.com/FriendsOfSymfony/UserBundle/blob/master/Resources/doc/index.rst> # app/config/config.yml doctrine.orm: mappings: UserBundle: ~ # your other bundles In general however Symfony2 is still in development and as is the documentation/guides, so I would expect it to improve as we near to the final stable release of Symfony2. -- If you want to report a vulnerability issue on symfony, please send it to security at symfony-project.com You received this message because you are subscribed to the Google Groups "symfony developers" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/symfony-devs?hl=en
