Great site this is! A lot of good programmers. But I can't even get a simple doctrine join to work:
$query = Doctrine_Query::create()
->from("StaffIndividualHasAddressAddress sa")
->innerJoin("sa.AddressAddress aa");
Always bums out with:
Message: Unknown relation alias AddressAddress
Is my 'aliassing' not ok? My yaml seems perfectly fine...
And if there is nothing wrong with the query, what else could mess up the process?