I added a column to the Entity and then I go to generate the database from the model or build the solution and I get the message that the new column I just added is not mapped. The database was previously created from the model with no errors.
When I right click on the Entity and select Table Mapping, I can see the old columns there mapped but I don't see a way to m
The only way I've found to resolve it without "update model from database" (what causes other issues in my legacy project) is to edit the .edmx file with the XML editor, add the property (Name and Type) to the EntityType and save. After that when I open the .edmx editor the added property is there for mapping.