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 一起用作驗證屬性。