I use C# MVC, I have a list:
public List<int?> SomeList { get; set; }
and when the user try to enter a letter instead of a number, it shows a validation error because the list's type is INT.
I want to add more validation, like "range" (not only) for the list's items (all of them will have the same attributes).
Can I do that? How?