I’m using MVC3 VS2010 with EF4.1, I have created my DB using SQL Server and I import it to the MVC3 Web Application.
I have a challenge here, when I come to Update Model from Database I do lost all my models files modifications, for example if I’m using attributes in some models for validation or so all that is overwritten with the new model properties.
Is there anyway to Update Model from Database without losing models’ information?
OR
where should I define validation on my models instead of using the models’ files directly?
Update: As this is still relatively popular, I have created a blog post on this.
http://jnye.co/Posts/19/adding-validation-to-models-created-by-entity-framework-database-first-c
If you want to validate your models, and not use viewModels, use partial classes to define validation attributes. For example:
Say you have a model like
If you wanted to put a string length validator on it you would need to create a partial class and utilise the
MetadataTypeAttribute(this lives in System.ComponentModel.DataAnnotations)The following classes should be defined in their own separate file, NOT put in the same file as your auto generated models.
You then define your validation in the
UserMetadataclass as followsEDIT
I just found this article which explains the solution in a little more detail
http://themonitoringguy.com/tips-tricks/validating-microsoft-entity-framework-objects-c-mvc/