码迷,mamicode.com
首页 > 其他好文 > 详细

9.11 翻译系列:数据注解特性之--Timestamp【EF 6 Code-First系列】

时间:2019-04-09 18:58:17      阅读:191      评论:0      收藏:0      [点我收藏+]

标签:any   none   att   有一个   optimize   number   hit   检查   tab   

9.11 翻译系列:数据注解特性之--Timestamp【EF 6 Code-First系列】

原文链接:https://www.entityframeworktutorial.net/code-first/TimeStamp-dataannotations-attribute-in-code-first.aspx

EF 6和EF Core都包含TimeStamp数据注解特性。它只能用在实体的byte数组类型的属性上,并且只能用在一个byte数组类型的属性上。然后在数据库中,创建timestamp数据类型的列,在更新语句中,EF API自动使用timestamp列,用于并发检查。
一个实体只能有一个时间戳列,我们看看下面的图:
技术图片
技术图片

using System.ComponentModel.DataAnnotations;

public class Student
{
    public int StudentId { get; set; }
    public string StudentName { get; set; }
        
    [Timestamp]
    public byte[] RowVersion { get; set; }
}

在上面的例子中,TimeStamp特性应用于Student实体的byte[]类型的RowVersion属性上,所以,EF 将会给RowVersion创建一个timestamp数据类型:
技术图片

timestamp类型的列,在更新的时候,会包含在where语句中:

using(var context = new SchoolContext()) 
{
    var std = new Student()
    {
        StudentName = "Bill"
    };

    context.Students.Add(std);
    context.SaveChanges();

    std.StudentName = "Steve";
    context.SaveChanges();
}

上面的代码,将会生成下面的语句:

exec sp_executesql N‘UPDATE [dbo].[Students]
SET [StudentName] = @0
WHERE (([StudentId] = @1) AND ([RowVersion] = @2))
SELECT [RowVersion]
FROM [dbo].[Students]
WHERE @@ROWCOUNT > 0 AND [StudentId] = @1‘,N‘@0 nvarchar(max) ,@1 int,@2 binary(8)‘,@0=N‘Steve‘,@1=1,@2=0x00000000000007D1
go

9.11 翻译系列:数据注解特性之--Timestamp【EF 6 Code-First系列】

标签:any   none   att   有一个   optimize   number   hit   检查   tab   

原文地址:https://www.cnblogs.com/caofangsheng/p/10678634.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!