$bookArray = $book->toArray($keyType = BasePeer::TYPE_COLNAME, $includeLazyLoadColumns = true, $includeForeignObjects = true);
print_r($bookArray);
=> array(
'Id' => 123,
'Title' => 'War And Peace',
'ISBN' => '3245234535',
'AuthorId' => 456,
'PublisherId' => 567
'Author' => array(
'Id' => 456,
'FirstName' => 'Leo',
'LastName' => 'Tolstoi'
),
'Publisher' => array(
'Id' => 567,
'Name' => 'Penguin'
)
)
}}}
I want above to applied to collection. For me for some reason no data publisher. Any configuration needed? I designed the key as one to one key. Primary key is foreign key in another table.
I tried everything, i can't get the Propel collection to the above array.