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?