In the world of MVC I have this view model...
public class MyViewModel{ [Required] public string FirstName{ get; set; } }
...and this s
Just change
[Required]
to
[Required(ErrorMessage = "Your Message, Bla bla bla aaa!")]