gpt4 book ai didi

c# - 插入时如何从表中获取自动生成的 ID?

转载 作者:行者123 更新时间:2023-11-30 16:33:49 27 4
gpt4 key购买 nike

我们如何在插入时从表中获取自动生成的 ID?

我有三个表

项目

项目X里程碑

里程碑

在插入 Milestone 时,我还想在 2nd Table 中插入一行,所以我需要 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());

关于c# - 插入时如何从表中获取自动生成的 ID?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2871750/

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