当前位置:  开发笔记 > 编程语言 > 正文

如何在使用LINQ插入后检索indentity列vaule

如何解决《如何在使用LINQ插入后检索indentity列vaule》经验,为你挑选了1个好方法。

你们有没有人能告诉我如何完成以下任务?

// Prepare object to be saved
// Note that MasterTable has MasterTableId as a Primary Key and it is an indentity column

MasterTable masterTable = new MasterTable();
masterTable.Column1 = "Column 1 Value";
masterTable.Column2 = 111;

// Instantiate DataContext
DataContext myDataContext = new DataContext("<>");

// Save the record
myDataContext.MasterTables.InsertOnSubmit(masterTable);
myDataContext.SubmitChanges();

// ?QUESTION?
// Now I need to retrieve the value of MasterTableId for the record just inserted above.

亲切的问候



1> CMS..:

在调用SubmitChanges之后,将为插入的对象分配标识值.

只需访问:

masterTable.MasterTableId

推荐阅读
放ch养奶牛
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有