Hi,
From what i have read in the documentation, as said in section 5.2.4.3, we can override the name given to the property of a many-to-one relationship, which would be, by default, based on the name of the referenced table.
but this has to be done for each foreign key constraint. suppose you have several tables with different columns that referent the same other table
table a
c references b
d references b
table b
the reverse engeneering would give you the properties bByC and bByD but i'd rather have them named c and d.
is there a way to make the names of all properties in many-to-one relationships be kept as the names of the referring columns?
|