如题
IDENTITY_INSERT 设置为 OFF 时,不能为表中的标识列插入显式值
很多网上的文章是设置表的
IDENTITY_INSERT 为 ON
EF中还要对模型就行设置
[Column(Name = "ID",IsPrimaryKey = true,DbType = "int(4)", AutoSync = AutoSync.OnInsert, IsDbGenerated = true)]
public int ID { get; set; }
红色是重点。
2023-01-10 19:31:37
如题
很多网上的文章是设置表的
EF中还要对模型就行设置
[Column(Name = "ID",IsPrimaryKey = true,DbType = "int(4)", AutoSync = AutoSync.OnInsert, IsDbGenerated = true)]
public int ID { get; set; }
红色是重点。