我已使用MSDN中的示例向我的数据集添加新记录。为了简单起见,我什至使用了相同的变量名。
C# 代码
NorthwindDataSet.CustomersRow newCustomersRow =
northwindDataSet1.Customers.NewCustomersRow();
newCustomersRow.CustomerID = "5";
newCustomersRow.CompanyName = "Alfreds Futterkiste";
northwindDataSet1.Customers.Rows.Add(newCustomersRow);
我得到的错误是The name 'northwindDataSet1' does not exist in the current context
我发现这很奇怪,因为我直接使用了 MSDN 中的代码。
我的DataSet 叫NorthwindDataSet,表叫Customers。我已经尝试过northwindDataSet
,但仍然是同样的错误。