必需屬性

應用於域類的屬性時,資料庫將建立 NOT NULL 列。

 placeholderCopyusing System.ComponentModel.DataAnnotations;

public class Person
{
    public int PersonID { get; set; }
    
    [Required]
    public string PersonName { get; set; }    
}

生成的列具有 NOT NULL 約束:

StackOverflow 文件

注意: 它也可以與 asp.net-mvc 一起用作驗證屬性。