I'm new to ASP.NET MVC 3 and EF 4.1 and I have a question: what is the difference in behavior of [MaxLength] and [StringLength] attributes? As far as I can tell (with the exception that [MaxLength] can validate the maximum length of an array) these are identical and somewhat redundant?

Please help me decide which one I'm best to use!

Thanks, Nick

link|improve this question
I'm not sure about ASP.NET MVC but for EF there should be no difference: stackoverflow.com/questions/5414611/… – Ladislav Mrnka Apr 19 '11 at 13:50
feedback

1 Answer

up vote 16 down vote accepted

MaxLength is used for the Entity Framework to decide how large to make a string value field when it creates the database.

From MSDN:

Specifies the maximum length of array or string data allowed in a property.

StringLength is a data annotation that will be used for validation of user input.

From MSDN:

Specifies the minimum and maximum length of characters that are allowed in a data field.

link|improve this answer
2  
Also note that by default MVC 3 does not recognized MaxLengthAttribute, while EF does recognize StringLengthAttribute – marcind Apr 19 '11 at 18:09
1  
So really there is no need for MaxLength since you can use StringLength in EF and it also infers the string field size. Why then did they even create MaxLength? – Matt Johnson Dec 1 '11 at 0:45
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.