Hi,
I'm migrating from 2.6 to 3.0. When you have to tables A en B that have a 1:n relation, with the code generated bij 2.6 one could use the following:
AEntity z = new AEntity(123).
if (z.B.Count > 0) .....
I.e. the reference to the related entities uses the singular name of B.
When I generate the code under 3.0 accessing B using the singular name is not possible.
You have to code
if (z.Bs.Count > 0) .....
Is this the new standard naming convention? Can it be changed, e.g. in the project propertie?
Best regards,
Jan