Got another small question.
When defining a field in an Entity, you can define which database field name should be used in the column ORM properties. This doesn't seem to function for foreign key fields.
I have a Note entity and a User entity:
http://adam.nostradamus.nu/screenshots/Schermafbeelding%202014-07-28%20om%2015.09.25.png
I've set up to use custom table fields on all items using the ORM properties field:
http://adam.nostradamus.nu/screenshots/Schermafbeelding%202014-07-28%20om%2015.10.46.png
This works correctly for all fields, it won't work correctly however for associations:
http://adam.nostradamus.nu/screenshots/Schermafbeelding%202014-07-28%20om%2015.12.53.png
http://adam.nostradamus.nu/screenshots/Schermafbeelding%202014-07-28%20om%2015.13.27.png
I'm getting this file when I export it to ORM:
http://adam.nostradamus.nu/screenshots/Schermafbeelding%202014-07-28%20om%2015.17.05.png
Where I would expect this:
/**
* @ORM\ManyToOne(targetEntity="User", inversedBy="notes")
* @ORM\JoinColumn(name="note_created_by", referencedColumnName="id")
*/
private $noteCreatedBy;
Any idea why that's not happening?