Hi Frans,
I was wondering what you could tell me about this idea. I have a some tables that look like
Project
---------
Id (pk)
Name
...
Phase
--------
Id (pk)
Name
ProjectId (fk)
...
PhaseStatus
-----------------
PhaseId (fk)
StatusId (fk)
ProjectId (fk)
UserId
The Project table has a direct 1:m relation to the Phases table, but also has an idirect relation via the PhaseStatus table (denormalized to make reporting easier).
The problem comes with the naming llblgen applies to the relationships, because I guess it's first in the list to be processed, it gives the Field mapped via PhaseStatus the best name "Phase" (in the project entities field) and give the direct relationship the name "Phase___".
I guess my proposal would be to have direct relationships take naming priority and get the best name (the least '_' postfixes). Would something like that even be possible? I know that I can (and have) renamed them via the gui, but it would be nice if it was a default feature. What do you think?