up vote 4 down vote favorite
3
share [g+] share [fb]

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.

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.

link|improve this question

65% accept rate
feedback

3 Answers

You're looking for ColumnAttribute.AutoSync. If you're using the designer, check each column for an Auto-Sync property and set it to Never.

Edit: Ok, that didn't work for you. Brace yourself for some mapping hackery!

When I Insert with some autogenerated primary key column, I get this SQL:

INSERT INTO [dbo].[TableName]( fieldlist )
VALUES (@p0, @p1, @p2, @p3, @p4)

SELECT CONVERT(Int,SCOPE_IDENTITY()) AS [value]

As I understand your request, you don't want that SELECT

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.

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."

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.

This third attempt generated the following SQL (which is what you ask for)

INSERT INTO [dbo].[TableName]( fieldlist )
VALUES (@p0, @p1, @p2, @p3, @p4)
link|improve this answer
Thanks for the suggestion. I did that, but the profiler is still showing a select after both inserts and updates. I don't know why. – Lance Fisher Jan 5 '09 at 21:56
I have two columns that are marked have AutoGeneratedValue set to true. The select statement is selecting these two columns after inserts and updates, even though AutoSync is set to false. – Lance Fisher Jan 5 '09 at 22:18
1  
That seems like a ludicrous amount of work to do for something that would have worked the right way the first time using ADO.Net – Jasmine Apr 17 '09 at 18:53
feedback

I cant recall the setting now, but in the designer, on a column's properties, you have some 'refresh' setting(s).

link|improve this answer
feedback

I had this problem with a project once. I simply used the context.ExecuteCommand({sql string here.}). This was for one insert that was causing performance problems. Easiest fix, easy to see and maintain rather than digging through the model in my opinion.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.