Linq Read Inserted Id of a Record

Suppose we have the following code sinppets:


private BlogDataContext db = new BlogDataContext ();
...

article.Created = DateTime.UtcNow;
article.Modified = DateTime.UtcNow;

db.Articles.InsertOnSubmit(article);
db.SubmitChanges( );

The ID of the article is automatically generated. How do we get the Id of the newly inserted record?

It turns out that the article is updated with the value of Id after the method SubmitChanges( ) is invoked. So, we can just get the Id this way:


int id = article.Id;

Credit: Read inserted Id from LINQ

One thought on “Linq Read Inserted Id of a Record

  1. Woah! I’m rally enjoying the template/theme of this blog. It’s simple,
    yeet effective. A lot of ttimes it’s dofficult tto geet that
    “perfect balance” betweeen superb usability and visual appearance.
    I mjst ssay you’ve donbe a amazing job with this.
    Also, the blog loazds extremely fast ffor mee onn Firefox.
    Outstnding Blog!

Leave a reply to Christopher Cancel reply