I have a Table in my data model which is called ContractProductChanges. In the EF data model wizard, I chose to pluralize or singularize object names. After finishing the wizard it names the entity ContractProductChanx. But ContractProductChange makes more sense imho, so I have to change that manually.

I'm in early development phase, consequently I update the .edmx file a lot. Is there a way to override the singularization rules?

link|improve this question

80% accept rate
1  
+1 good question. I have exactly same problem. – Ladislav Mrnka Feb 23 '11 at 10:19
2  
It will only pluralize or singularize new items it's adding, though - once you've manually corrected it once you shouldn't have to change it again? – Rup Feb 23 '11 at 10:33
I always delete all entities from the .edmx before updating it from the database. I know that I don't have to do that each time, but it feels cleaner. – Kuckucksei Feb 23 '11 at 10:41
feedback

2 Answers

up vote 1 down vote accepted

Check out this related question:

Is there a way to set custom pluralizations in EDM designer 2010?

seems like its a bit hairy to chanx the rules yourself but it may be worthwhile for something you encounter often.

link|improve this answer
feedback

It is probably because it cannot recognise ContractProductChanges as a word.

Try changing it to "Changes". You could also try changing it to Contract_Product_Changes.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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