vote up 1 vote down star

Hi,

I am using LINQ To SQL to handle data access in a project. For a case where I have multiple foreign keys in a table to the same table (for e.g. CustomerUserId, TechnicianUserId) , it generates the property names like ApplicationUser and ApplicationUser1. Is there a way to tweak the code generator to produce easier to read names.

I was pleasently surprised by LINQPad in this regard. It correctly generates property names (for e.g. in this case CustomerUser and TechnicianUser).

flag

51% accept rate

1 Answer

vote up 1 vote down

If you use the LINQ2SQL designer, you can select the connection between the two classes and modify the property names (expand Child Property and/or Parent Property in your properties window).

link|flag
Ya but this is usually not a practical approach. The changes are overridden when i need to synchronize the model with the schema changes :( – Ali Kazmi Apr 8 at 9:02
Agreed that this is not a practical approach. I haven't found a good solution for it yet... – rwwilden Apr 9 at 6:20
Maybe you could take a look at olegsych.com/2009/01/… – rwwilden Apr 9 at 6:26

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.