我有以下插入语句:在我的表中,ID 是主键...
INSERT INTO Student(Name,Family,Address);
我在名为 SelectID 的 TableAdapter 中创建了其他查询
SELECT @@IDENTITY;
现在回到我的代码:我调用 Insert :
TableAdapter .Insert("Elli",Stuart","tt11");
Display("Record Added.....And Student ID is:" + TableAdapter .SelectID);
问题是@@IDENTITY 假设要返回我的 ID,但它没有在这里返回任何东西!我做错了什么?!