我正在使用 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?我很确定它必须是可能的,但我只是在努力找出......
谢谢。