I refactor my code in order to respect the view model pattern. I also used the AutoMapper. Now, I have a question related to 'Required' and 'DisplayName' annotations. Originally I set these annotations on the model. I thought this was the best place to be. But now that I use a viewModel on my views I'm wondering
Do I have to move 'DisplayName' and 'Required' annotations from my model to my view model classes?
I noticed that my annotations on my models are no more detected in my views (now based on view models).
Thanks for your help.