Stop LINQ to SQL from executing select statements after insert - Stack Overflow most recent 30 from stackoverflow.com 2009-11-30T19:48:35Z http://stackoverflow.com/feeds/question/407720 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/407720/stop-linq-to-sql-from-executing-select-statements-after-insert 1 Stop LINQ to SQL from executing select statements after insert Lance Fisher 2009-01-02T18:59:09Z 2009-01-06T16:08:19Z <p>I'm using LINQ to SQL to update my database. I'm inserting a lot of records, and when I call SubmitChanges(), LINQ to SQL executes an insert and a select statement for each object. I don't really care to update my objects after they are inserted into the database.</p> <p>Do you know I can prevent LINQ to SQL from issuing the select statements after the insert statements? This should make my app much faster.</p> http://stackoverflow.com/questions/407720/stop-linq-to-sql-from-executing-select-statements-after-insert/407760#407760 0 Answer by leppie for Stop LINQ to SQL from executing select statements after insert leppie 2009-01-02T19:13:42Z 2009-01-02T19:13:42Z <p>I cant recall the setting now, but in the designer, on a column's properties, you have some 'refresh' setting(s).</p> http://stackoverflow.com/questions/407720/stop-linq-to-sql-from-executing-select-statements-after-insert/407976#407976 3 Answer by David B for Stop LINQ to SQL from executing select statements after insert David B 2009-01-02T20:49:33Z 2009-01-06T16:08:19Z <p>You're looking for <a href="http://msdn.microsoft.com/en-us/library/system.data.linq.mapping.columnattribute.autosync.aspx" rel="nofollow">ColumnAttribute.AutoSync</a>. If you're using the designer, check each column for an Auto-Sync property and set it to Never.</p> <p><strong>Edit:</strong> Ok, that didn't work for you. Brace yourself for some mapping hackery!</p> <p>When I Insert with some autogenerated primary key column, I get this SQL:</p> <pre><code>INSERT INTO [dbo].[TableName]( fieldlist ) VALUES (@p0, @p1, @p2, @p3, @p4) SELECT CONVERT(Int,SCOPE_IDENTITY()) AS [value] </code></pre> <p>As I understand your request, you don't want that SELECT</p> <p>Attempt 1: I went to the primary key field and set auto-generated to false. This caused a Sql Exception "Cannot insert explicit value for identity column in table 'TableName' when IDENTITY_INSERT is set to OFF." In other words, linq specified a value for that column.</p> <p>Attempt 2: I deleted the autogenerated columns from the designer. This caused Linq to give me an Invalid Operation Exception: "Can't perform Create, Update or Delete operations on 'Table(TableName)' because it has no primary key."</p> <p>Attempt 3: I deleted the autogenerated columns from the designer, then I marked another column as primary key. Even though this column is not a primary key in the database, LINQ's DataContext will use it to track row identity. It must be unique for observed records of a given DataContext.</p> <p>This third attempt generated the following SQL (which is what you ask for)</p> <pre><code>INSERT INTO [dbo].[TableName]( fieldlist ) VALUES (@p0, @p1, @p2, @p3, @p4) </code></pre>