時間戳屬性

[TimeStamp] 屬性只能應用於給定 Entity 類中的一個位元組陣列屬性。實體框架將在該屬性的資料庫表中建立一個不可為空的時間戳列。實體框架將在併發檢查中自動使用此 TimeStamp 列。

using System.ComponentModel.DataAnnotations.Schema;

public class Student
{
    public int Id { set; get; }

    public string FirstName { set; get; }

    public string LastName { set; get; }    

    [Timestamp]
    public byte[] RowVersion { get; set; }
}

StackOverflow 文件