データベースに挿入しようとすると、このエラーが発生します。サイズが十分に長いかどうか、属性が問題ないかどうかはすでに確認しました。これが私の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;