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

I have a table that normally, upon insert, the auto-key will increment. But, there are some instances when we want to set the ID (as would easily be done with "IDENTITY INSERT" in SQL).

Is there a way to accomplish this with LINQ to SQL?

Thanks,

link|improve this question

feedback

1 Answer

up vote 4 down vote accepted

Take a look here: http://social.msdn.microsoft.com/Forums/en-US/linqtosql/thread/566e9540-911e-48b4-ac31-f69c0ab9f7fb/ Last reply here: http://forums.asp.net/t/1208607.aspx

link|improve this answer
3  
I've just come across this looking for how to do this in EF, not LINQ-to-SQL, but this (accepted) answer doesn't seem to help: both links explain how to use DB generated IDs, not temporarily override them as I (and the OP here) are trying to do. Or have I missed something? Thanks. – Rup Jan 12 '11 at 23:08
I don't know, I'd guess Timothy tried the code. Did you? Perhaps the IsDbGenerated does the trick to allow setting the identity manually. What does EF stand for (forgot) again? – Eduardo Jan 13 '11 at 18:14
It's Entity Framework, the other .NET ORM. I'll ask a new question about it - thanks. – Rup Jan 14 '11 at 10:34
FYI: the first link has correct answer for LinqToSQL – Ralph Willgoss Dec 12 '11 at 3:27
feedback

Your Answer

 
or
required, but never shown

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