I was trying to require a text input field in a form, which implies that there needs to be something in the form. However, adding a [Required] tag to my model w
[Required]
You could use [MinLength(1)]. See msdn docs here.
[MinLength(1)]