After I do an insert using linq to sql, can I get the Identity_scope value back if my table has an identity column?
+3
A:
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;
CMS
2009-11-13 05:03:00
It was way to obvious for me to see :) Thanks.
Jeremy
2009-11-13 06:03:37