Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have an application using Entity Framework 5 using an existing database. I can generate the models the first time using an ADO.NET Entity Data Model just fine. However, when I change the schema of a table (adding/deleting columns), and select "Update Model from Database" from the EDMX file it refreshes everything but the generated models.

Apparently, this is expected behavior, but we have a practice of not modifying the generated classes. If we need to add functionality, I'll create another partial class and add methods to it. I would like a way to force EF to regenerate the CSDL too, without going through the trouble of deleting the EDMX and re-adding it. Is there a way I can do this?

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.