After I do an insert using linq to sql, can I get the Identity_scope value back if my table has an identity column?

link

65% accept rate
feedback

1 Answer

up vote 5 down vote accepted

Linq to SQL does the job for you, the identity value it's available just after the SubmitChanges method is called.

var entity = new Entity();
// ...
ctx.Entities.InsertOnSubmit(entity);
ctx.SubmitChanges();
// Here you can use the generated value of yout identity column

entity.Id;
link
It was way to obvious for me to see :) Thanks. – Jeremy Nov 13 '09 at 6:03
feedback

Your Answer

 
or
required, but never shown

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