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