Linq to sql error with identitiy increment field - Stack Overflow most recent 30 from stackoverflow.com 2009-12-10T19:42:31Z http://stackoverflow.com/feeds/question/358821 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/358821/linq-to-sql-error-with-identitiy-increment-field 2 Linq to sql error with identitiy increment field Dave Turvey 2008-12-11T09:45:31Z 2008-12-11T10:30:48Z <p>I've just started to use linq to sql and have run into a problem with inserting a record with an auto incrementing field.</p> <p>I have created a new instance of a company object defined by linq. it has initialised an auto incrementing field 'companyID' to 0. InsertOnSubmit() fails with the following invalidOperationException.</p> <blockquote> <p>Incorrect autosync specification for member 'companyID'</p> </blockquote> <p>the column attribute IsDbGenerated is true for the companyID property. I am using sql server 2000.</p> <p>Edit: Auto-sync is set to OnIsert. The dataype is BigInt in TSQL, long in c#.</p> <p>Does anyone know why this error is occuring and how it can be resolved?</p> <p>thanks</p> http://stackoverflow.com/questions/358821/linq-to-sql-error-with-identitiy-increment-field/358851#358851 0 Answer by leppie for Linq to sql error with identitiy increment field leppie 2008-12-11T09:59:12Z 2008-12-11T09:59:12Z <p>What is the value of the 'Auto-Sync' property on that class/table?</p> <p>I just checked on my side, and it is set to 'OnInsert'. Also the 'Auto Generated Value' is set to true.</p> http://stackoverflow.com/questions/358821/linq-to-sql-error-with-identitiy-increment-field/358852#358852 0 Answer by Marc Gravell for Linq to sql error with identitiy increment field Marc Gravell 2008-12-11T09:59:42Z 2008-12-11T09:59:42Z <p>What is the data-type? int? (int both TSQL and in C#?)</p> <p>What auto-sync setting do you have? For a primary key, it should be "OnInsert"</p> http://stackoverflow.com/questions/358821/linq-to-sql-error-with-identitiy-increment-field/358921#358921 1 Answer by Dave Turvey for Linq to sql error with identitiy increment field Dave Turvey 2008-12-11T10:30:48Z 2008-12-11T10:30:48Z <p>Found the answer. It was to do with primary keys. In the linq designer the primary keys were setup as they should be. In the database the relevant fields were not set as primary keys. I fixed the keys in the databse and this resolved the problem.</p>