Linq to Sql:插入后可以返回 Identity_Scope 吗?

发布于 2024-08-11 05:18:01 字数 62 浏览 7 评论 0原文

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

After I do an insert using linq to sql, can I get the Identity_scope value back if my table has an identity column?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

血之狂魔 2024-08-18 05:18:01

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 does the job for you, the identity value it's available just after the SubmitChanges method is called.

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

entity.Id;
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文