ADO.NET Entity Framework: Update Wizard will not add tables

The design surface is different from the entity model. It is possible to have a table in the mapping in your EDMX which does not appear on the design surface. View the file as XML to see if this is the case. In this case, the Update Wizard will not allow you to re-add the tables, since they are already part of the entity model. So, generally speaking, the Update Wizard knows more about your entity model than it does about the design surface, per se.

I don’t think that’s exactly the situation you’re in, but it should give you the general idea for the solution: go into the XML and look for references to the tables in question.

Leave a Comment