时间戳属性

[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 文档