我的SQL Server数据库中应该有timestamp数据类型行。我正在使用代码优先方法,所以我想从我的域util类生成这个字段。
那么,如何将此属性声明为在数据库中生成为时间戳?
答案 0 :(得分:5)
您可以使用用[Timestamp]
属性修饰的字节数组:
[Timestamp]
public byte[] SomeTimestamp { get; set; }
您可能还想查看following article
。
答案 1 :(得分:0)
您可以使用此示例
...
public byte[] TimeStamp { get; set; }
}
public class UserModelConfiguration: EntityTypeConfiguration<User> {
public UserModelConfiguration() {
Property(p => p.TimeStamp).IsRowVersion();
}
}