I'm developing a Web API Service (in Visual Studio 2013), and I've added, in my solution, ADO.NET Entity Data Model (Database First).
All the tables I've included, are correctly created in my edmx diagram.
Then I've made some changes: I've added two new columns in the source database, and I've removed one column. So, when I try to update model from database the two new columns are added, while the removed column is still in my model and the message:
Error 11009: Property 'Image' is not mapped.
Where Image
is the name of the removed column in the database.
Can I manually remove this property from model? Or is there another cleaner and safer way to do this?