次のような EF 移行を使用してテーブルを作成しています。
this.CreateTable("Message",
c => new
{
Id = c.Long(nullable: false, identity: true, defaultValue: 0),
Subject = c.String(nullable: false, maxLength: 64),
Body = c.String(nullable: false, isMaxLength: true)
})
.PrimaryKey(c => c.Id)
.Index(c => c.Id, unique: true);
Id フィールドを auto_increment に定義するにはどうすればよいですか? 私はそれが可能でなければならないと確信していますが、私は見つけるのに苦労しています...
ありがとう。