जवाबों:
जब आप अपने ऑब्जेक्ट को db में करते हैं, तो ऑब्जेक्ट को उसके ID फ़ील्ड में एक मान प्राप्त होता है।
इसलिए:
myObject.Field1 = "value";
// Db is the datacontext
db.MyObjects.InsertOnSubmit(myObject);
db.SubmitChanges();
// You can retrieve the id from the object
int id = myObject.ID;
उत्पन्न आईडी डालते समय सहेजे जा रहे ऑब्जेक्ट के उदाहरण में सहेजा गया है (नीचे देखें):
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;
}
संदर्भ: http://blog.jemm.net/articles/dat डेटाबेस / how-to-common-data-patterns-with-linq-to-sql/#4
इसे इस्तेमाल करे:
MyContext Context = new MyContext();
Context.YourEntity.Add(obj);
Context.SaveChanges();
int ID = obj._ID;