表结构
ID 自动增长
CustomerName 用户姓名
linq to Entity 新增代码
Customer customer = new Customer(); customer.CustomerName = txtReceiver.Text;edm.AddToCustomer(customer);edm.SaveChanges();
问题:怎么才能在新增完之后 得到自动增长的ID的值
补充:是如何才能得到ID
int intID=customerID;
customer.Id 会被自动赋值。
不是 是要在后台得到最新的ID
@yellowshorts:
return customer.Id;
@Launcher: 可以了 谢谢哈