hi,
let's consider the classic scenario: 2 tables Customer and Order having a 1:m relationship (one customer can have many orders).
After generating the classes I get a CustomerEntity class containing a
property named "... OrderCollection Order".
My question is how can I get LLBLGen Pro to generate collection properties in plural
like this: public OrderCollection Orders.
That should apply to all generated collection properties of course.
We do prefer the plural form in collections names.
Is there a way to achieve that? I don't want to rename the DB tables (Order -> Orders)!
Best regards
Tino