Linq-to-SQLを使用してDBにオブジェクトを入力すると、別のdb呼び出しを行わずに、挿入したIDを取得できますか?これは非常に簡単だと思いますが、方法がわかりません。
オブジェクトを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;
生成された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/databases/how-to-common-data-patterns-with-linq-to-sql/#4
これを試して:
MyContext Context = new MyContext();
Context.YourEntity.Add(obj);
Context.SaveChanges();
int ID = obj._ID;