StringLength(int) 属性

using System.ComponentModel.DataAnnotations;

public class Post
{
    public int Id { get; set; }
    
    [StringLength(100)]
    public string Title { get; set;}

    [StringLength(300)]
    public string Abstract { get; set; }
    
    public string Description { get; set; }
}

定义字符串字段的最大长度。

StackOverflow 文档

注意 :它也可以与 asp.net-mvc 一起用作验证属性。