I\'ve got a view model like this:
public class SignUpViewModel { [Required(ErrorMessage = \"Bitte lesen und akzeptieren Sie die AGB.\")] [DisplayName
This might be a "hack" but you can use the built in Range attribute:
[Display(Name = "Accepted Terms Of Service")] [Range(typeof(bool), "true", "true")] public bool Terms { get; set; }
The only problem is the "warning" string will say "The FIELDNAME must be between True and true".