In my code I got a something like this:
->withColumn('TableName.From', '`from`')
and of course to fetch this column I have to call method "select" like this
->select(array('alias1', ...., '`from`'...)
Everything works fine but I got in the result key "from" with ` chars.
Is there are any elegant solution on Propel end which can help me get a key in the result like "from" ? I noticed if I use Criteria object I can do it quite easily but Criteria object is not the "right" approach since a while. I would like to use Query API as Propel's guy suggested.
I cannot change the key. I have to stick with key "from".