gpt4 book ai didi

linq-to-sql - Linq 到 Sql : Can I return the Identity_Scope after an insert?

转载 作者:行者123 更新时间:2023-12-05 00:42:45 28 4
gpt4 key购买 nike

使用 linq to sql 进行插入后,如果我的表有标识列,我可以取回 Identity_scope 值吗?

最佳答案

Linq to SQL 为您完成这项工作,它在 SubmitChanges 之后可用的标识值方法被调用。

var entity = new Entity();
// ...
ctx.Entities.InsertOnSubmit(entity);
ctx.SubmitChanges();
// Here you can use the generated value of yout identity column

entity.Id;

关于linq-to-sql - Linq 到 Sql : Can I return the Identity_Scope after an insert?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1727215/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com