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; }
}
定義字串欄位的最大長度。
注意 :它也可以與 asp.net-mvc 一起用作驗證屬性。