エンティティ フレームワークの移行を使用して、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);