So, with my edmx (MyDatabase.Edmx) file, whenever I update model from database and I rebuild the project, it creates a duplicate designer file (MyDatabase1.Designer.cs). Was wondering if anyone knows of a config file to avoid creating the duplicate file? It happens on my local for dev purposes, my other teammates doesn't get the same issue.

link|improve this question

67% accept rate
feedback

2 Answers

Looks like you have MyDatabase.Designer.cs included in your project as a regular source file. Just exclude it, delete MyDatabase1.Designer.cs and rebuild the project.

link|improve this answer
yeah but everytime i rebuild it shows up again even after deleting.. – gdubs Feb 17 at 20:11
You should have included into your project just MyDatabase.edmx. MyDatabase.Designer.cs will be included automatically. Could you confirm that you do NOT have MyDatabase.Designer.cs included manually? – Sergey Sirotkin Feb 17 at 20:14
Hmm..I dont really know how to do that. I'll ask around. – gdubs Feb 17 at 20:19
Any luck in solving that? – Sergey Sirotkin Feb 17 at 20:57
answered it. sorry for the late reply. – gdubs Apr 10 at 18:48
feedback
up vote 0 down vote accepted

So the way I did it is to check out the edmx files from TFS and then refreshed the tables. Rebuild the the project and then rebuild teh solution. For some reason it stopped duplicating the file.

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.