我正在为 Orchard CMS 编写一个模块,我需要将 Id 的起始值设置为 15。如何通过代码来实现?
在 Migrations.cs 中:
SchemaBuilder.CreateTable("NewRecord", table => table
.ContentPartRecord()
.Column<int>("Id", c => c.PrimaryKey().Identity())
它使用主键创建列 ID。我应该添加什么来设置起始值?谢谢你!