9.9 翻译系列:数据注解特性之--MaxLength 【EF 6 Code-First系列】
程序员文章站
2022-06-23 23:36:52
原文链接:https://www.entityframeworktutorial.net/code-first/maxlength-minlength-dataannotations-attribute-in-code-first.aspx MaxLength特性指定了属性的值所允许的最大值,然后在 ......
原文链接:
maxlength特性指定了属性的值所允许的最大值,然后在数据库中就生成相应列的最大值。maxlength特性可以应用于实体的string类型的属性和byte[]数组类型的属性上。
如果maxlength特性,应用在其他类型的属性上就报错,例如下面的图中例子:
using system.componentmodel.dataannotations; public class student { public int studentid { get; set; } [maxlength(50)] public string studentname { get; set; } }
上面代码例子中,maxlength(50)应用在studentname属性上,指定studentname的属性值不能超过50个字符长度。
ef将会检查标识了maxlength特性的属性值,如果长度超过了指定的长度,就会报错,ef6报错:system.data.entity.validation.dbentityvalidationexception ,ef core报错:microsoft.entityframeworkcore.dbupdateexception.
请注意:maxlength特性,同样可以用在asp.net mvc中,用于验证属性的值,了解更多详情请看这篇文章: implement validations in asp.net mvc。
推荐阅读
-
5.翻译系列:EF 6中数据库的初始化(EF 6 Code-First 系列)
-
9.3 翻译系列:数据注解特性之Key【EF 6 Code-First 系列】
-
9.7 翻译系列:EF数据注解特性之--InverseProperty【EF 6 Code-First系列】
-
9.翻译系列:EF 6以及EF Core中的数据注解特性(EF 6 Code-First系列)
-
9.9 翻译系列:数据注解特性之--MaxLength 【EF 6 Code-First系列】
-
9.10 翻译系列:EF数据注解特性之StringLength【EF 6 Code-First系列】
-
20.1翻译系列:EF 6中自动数据迁移技术【EF 6 Code-First系列】
-
14.翻译系列:从已经存在的数据库中生成上下文类和实体类【EF 6 Code-First系列】
-
18.翻译系列:EF 6 Code-First 中的Seed Data(种子数据或原始测试数据)【EF 6 Code-First系列】
-
5.翻译系列:EF 6中数据库的初始化(EF 6 Code-First 系列)