I know how to add validation errors to the model state. I know how to add the validation annotations to my model classes. The problem is that with Database first, I don't want to touch the generated code, because when I regenerate, I will lose my customization. I always try to customize in partials, but you can't add annotation to an existing property in a partial.
What is best practice here?
You need to separate you EDMX file and entities:
After updating EDMX model you need manually apply changes from newly generated entity on entity from Data.Contracts project.