当我尝试插入数据库时出现此错误。我已经检查了大小是否足够长以及属性是否正常。这是我的 SQL 布局。
schoolID int (Primary Key)
schoolNaam varchar(50)
stad varchar(30)
我的插入代码:
BLSchool blSchool = new BLSchool();
List<School> scholen = blSchool.GetAll();
School school = new School();
school.SchoolNaam = schoolnaam.ToString();
school.Stad = schoolstad.ToString();
int schoolID = blSchool.InsertSchool(school);
db.Schools.InsertOnSubmit(school);
db.SubmitChanges();
return school.SchoolID;