欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

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特性,应用在其他类型的属性上就报错,例如下面的图中例子:
9.9 翻译系列:数据注解特性之--MaxLength 【EF 6 Code-First系列】
9.9 翻译系列:数据注解特性之--MaxLength 【EF 6 Code-First系列】

using system.componentmodel.dataannotations;
    
public class student
{
    public int studentid { get; set; }
    [maxlength(50)]
    public string studentname { get; set; }
        
}

上面代码例子中,maxlength(50)应用在studentname属性上,指定studentname的属性值不能超过50个字符长度。
9.9 翻译系列:数据注解特性之--MaxLength 【EF 6 Code-First系列】

ef将会检查标识了maxlength特性的属性值,如果长度超过了指定的长度,就会报错,ef6报错:system.data.entity.validation.dbentityvalidationexception ,ef core报错:microsoft.entityframeworkcore.dbupdateexception.

请注意:maxlength特性,同样可以用在asp.net mvc中,用于验证属性的值,了解更多详情请看这篇文章: implement validations in asp.net mvc