Can this only be done via a custom validator or is there anything I'm missing? Just want to make a simple check on an ICollection<string> property that it has at least one item.
Tried this with no luck:
[Required]
[MinLength(1, ErrorMessage = "At least one Something is required")]
public ICollection<string> Somethings { get; set; }
Thanks!