How do Data Annotations work?

后端 未结 4 1266
星月不相逢
星月不相逢 2020-12-08 15:08

I use Data Annotations in my ASP.NET MVC 3 project to validate the model. These are extremely convenient but currently they are magic to me. I read that data annotations do

4条回答
  •  攒了一身酷
    2020-12-08 15:44

    How then does MVC know to add validation errors to the model state dictionary?

    ModelValidatorProvider, more specifically, DataAnnotationsModelValidatorProvider. This is called by MVC.

提交回复
热议问题