In a PropelORM object retrieved from a query with virtual columns from a join, is there a way/method to include virtual columns in the toArray() call?
For example:
$book = BookQuery::create()
->join('Book.Author')
->with('Author')
->where('Author.Name = ?', 'Jane Austen')
->findOne();
$aBook = $book->toArray();
In the above code, I would like the array generated in the toArray() call to have the fields from the Authors table as well, not just the Books table.