I think you need to study annotations: Required and StringLength :
[Required] [StringLength(50)]
So something like:
public class Users { ... [Required] [StringLength(50)] public String UserName { get; set; } ... }
I think he should do it.
Good luck.
source share