Linq to sql error with identitiy increment field - Stack Overflow most recent 30 from stackoverflow.com2009-12-10T19:42:31Zhttp://stackoverflow.com/feeds/question/358821http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/358821/linq-to-sql-error-with-identitiy-increment-field2Linq to sql error with identitiy increment fieldDave Turvey2008-12-11T09:45:31Z2008-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#3588510Answer by leppie for Linq to sql error with identitiy increment fieldleppie2008-12-11T09:59:12Z2008-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#3588520Answer by Marc Gravell for Linq to sql error with identitiy increment fieldMarc Gravell2008-12-11T09:59:42Z2008-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#3589211Answer by Dave Turvey for Linq to sql error with identitiy increment fieldDave Turvey2008-12-11T10:30:48Z2008-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>