您好我正在尝试创建新的客户记录。主 id customerid 是自动增量列。
当我尝试插入新记录时,出现此错误:
消息=当 IDENTITY_INSERT 设置为 OFF 时,无法在表“客户”中插入标识列的显式值。
这是我正在使用的相同代码:
NewCustomer.Name= user.Name;
NewCustomer.Address= user.Address;
NewCustomer.Phone = user.Phone;
NewCustomer.Email= user.Email;
db.Customers.Add(NewCustomer);
db.SaveChanges();
我在某处读到我必须设置自动增量,但我使用的是实体框架而不是任何直接的 sql。有人可以帮助我如何打开自动增量以便我可以插入记录吗?