gpt4 book ai didi

entity-framework-4.1 - 什么fluent api方法对应Data Annotations API中的[Timestamp]属性来检查并发

转载 作者:行者123 更新时间:2023-12-04 00:20:09 26 4
gpt4 key购买 nike

我正在使用 Entity Framework 4.1。
Data Annotations API中的[Timestamp]属性对应什么fluent api方法来检查并发?

最佳答案

如果你有这样的类(class):

public class MyEntity
{
...
public byte[] Timestamp { get; set; }
}

您将像这样使用流畅的映射:
modelBuilder.Entity<MyEntity>()
.Property(e => e.Timestamp)
.IsConcurrencyToken()
.HasDatabaseGeneratedOption(DatabaseGeneratedOption.Computed);

或者:
modelBuilder.Entity<MyEntity>()
.Property(e => e.Timestamp)
.IsRowVersion();

关于entity-framework-4.1 - 什么fluent api方法对应Data Annotations API中的[Timestamp]属性来检查并发,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6167265/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com