我正在为Orchard CMS编写一个模块,我需要将Id的起始值设置为15。 我怎么能通过代码来做呢?
在Migrations.cs中:
SchemaBuilder.CreateTable("NewRecord", table => table
.ContentPartRecord()
.Column<int>("Id", c => c.PrimaryKey().Identity())
并使用主键创建列ID。我应该添加什么来设置起始值?谢谢!
答案 0 :(得分:0)
无法从数据迁移API中定义此值。
答案 1 :(得分:0)
感谢大家!解决此问题的方法 - 删除表中的主键并更改列ID?这是自动创建的。我用SchemaBuilder.ExecuteSQL(string)方法做到了。