Ok, so I have this in one of my model files -
public string FullName { get { return FirstName + " " + LastName; } }
This has been entered by me and not automatically by EF.
When I run update from database within the .edmx file, the above code gets deleted.
I have tried putting it into a meta data / partial class, but it seems that is only working for data annotations.
Is there a way of keeping the custom FullName field when updating the model from database?
I know I could use view models, but would rather not