Can I return the 'id' field after a LINQ insert?

后端 未结 3 1609
独厮守ぢ
独厮守ぢ 2020-12-12 11:20

When I enter an object into the DB with Linq-to-SQL can I get the id that I just inserted without making another db call? I am assuming this is pretty easy, I just don\'t k

3条回答
  •  时光说笑
    2020-12-12 11:32

    When inserting the generated ID is saved into the instance of the object being saved (see below):

    protected void btnInsertProductCategory_Click(object sender, EventArgs e)
    {
      ProductCategory productCategory = new ProductCategory();
      productCategory.Name = “Sample Category”;
      productCategory.ModifiedDate = DateTime.Now;
      productCategory.rowguid = Guid.NewGuid();
      int id = InsertProductCategory(productCategory);
      lblResult.Text = id.ToString();
    }
    
    //Insert a new product category and return the generated ID (identity value)
    private int InsertProductCategory(ProductCategory productCategory)
    {
      ctx.ProductCategories.InsertOnSubmit(productCategory);
      ctx.SubmitChanges();
      return productCategory.ProductCategoryID;
    }
    

    reference: http://blog.jemm.net/articles/databases/how-to-common-data-patterns-with-linq-to-sql/#4

提交回复
热议问题