Linq to Sql:插入后可以返回 Identity_Scope 吗?
使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Linq to SQL 会为您完成这项工作,在调用
SubmitChanges
方法后就可以使用标识值。Linq to SQL does the job for you, the identity value it's available just after the
SubmitChanges
method is called.