当我使用 Linq-to-SQL 将对象输入到数据库中时,是否可以在不进行另一个数据库调用的情况下获取我刚刚插入的 id?我假设这很容易,我只是不知道如何。
naspinski
问问题
108093 次
3 回答
272
将对象提交到数据库后,对象会在其 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;
于 2008-09-22T09:15:39.563 回答
16
插入生成的 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
于 2008-09-22T09:16:22.447 回答
4
试试这个:
MyContext Context = new MyContext();
Context.YourEntity.Add(obj);
Context.SaveChanges();
int ID = obj._ID;
于 2019-02-14T14:55:10.687 回答