I have several Entity Framework objects from which I deleted several fields.
(I thought that consumers of the model would not need these fields. Now it turns out that they do it.)
I need to return these fields. I tried to do "Update from the database", but this does not restore them. (I suppose I remember that I wanted them to be deleted.)
I know that I can just delete and then add the object again, but this causes other problems (I have several FK associations that need to be renamed. I don't want to repeat them again.)
How can I mark these fields for recovery?
source share