插入时如何从表中获取自动生成的ID?
作者:互联网
插入时如何从表中获取自动生成的ID?
我有三张桌子
项目
ProjectX里程碑
里程碑
在插入里程碑时,我也想在第二张表中插入一行,所以我需要MilestoneId吗?那我该怎么办呢?
我正在使用Linq.
解决方法:
检查它用于linq to sql
PractiseDataContext pDc = new PractiseDataContext();
// Here CustomerId is the Identity column(Primary key) in the 'CustomerDetails' table
CustomerDetail cust = new CustomerDetail();
cust.CustomerName = "LINQ to SQL";
pDc.CustomerDetails.InsertOnSubmit(cust);
pDc.SubmitChanges();
Response.Write(cust.CustomerId.ToString());
标签:linq,c,asp-net-mvc 来源: https://codeday.me/bug/20191210/2098815.html