9.11 翻譯系列:數據註解特性之--Timestamp【EF 6 Code-First系列】

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

EF 6 Code-First系列文章目錄:html

EF 6和EF Core都包含TimeStamp數據註解特性。它只能用在實體的byte數組類型的屬性上,而且只能用在一個byte數組類型的屬性上。而後在數據庫中,建立timestamp數據類型的列,在更新語句中,EF API自動使用timestamp列,用於併發檢查。
一個實體只能有一個時間戳列,咱們看看下面的圖:
enter description here
enter description herejava

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數據類型:
enter description heresql

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
相關文章
相關標籤/搜索