So when I run the following, the role is inserted but the ID column is auto generated. How do I stop this from happening when using Linqpad?
Roles.InsertOnSubmit(new Role(){ID = 26, Name = "TheRole", Created = DateTime.Now, Updated = DateTime.Now});
SubmitChanges();