Say I have an Account object and an AccountData object (which stores some less used properties like gender, etc.).
The relationship between an account and AccountData is one-to-one, and the account "owns" AccountData.
I'm trying to figure out, using Doctrine 2 / Symfony 2, how to raise an account according to a property in AccountData.
For example, how do I search all accounts with AccountData-> gender = 'female'?
php symfony doctrine2
johnnietheblack
source share