I'm going to create a property for my Model which got minLength = 6 but no limit for its maximum.
Using below syntax, Visual Studio says there are no overloads for below syntax and I should put MaxmimumLength as first parameter. So are there any MAX_LENGTH constants or such thing to put as first parameter?
[StringLength(MinimumLength = 6)]
public string Name { get; set; }