2014-06-17 5 views
0

엔티티 프레임 워크 마이그레이션을 사용하여 rowversion 필드를 생성하는 방법은 무엇입니까? 여기 제가 달성하고자하는 샘플입니다.프레임 워크 마이그레이션을 사용하여 rowversion 필드를 생성하는 방법

CreateTable(
       companiesTable, 
       companies => new 
       { 
        Id = companies.Int(nullable: false, identity: true), 
        RowVersion = companies.????, 
        Name = companies.String(nullable: false, maxLength: 256), 
        Slug = companies.String(nullable: false, maxLength: 256) 
       }) 
       .PrimaryKey(x => x.Id) 
       .Index(x => x.Slug, unique: true); 

답변

0
Version = c.Binary(nullable: false, fixedLength: true, timestamp: true, storeType: "rowversion"),