调用 TableAdapter 的 Fill 或 FillBy 查询并传入数据表进行填充。例如,以下代码执行 Fill 查询并填充 Customers 表:
customersTableAdapter1.Fill(northwindDataSet1.Customers);
调用 TableAdapter 的 GetData 或 GetDataBy 查询,返回以查询结果填充的类型化数据表。例如,以下代码执行 GetData 查询并返回 Customers 表:
NorthwindDataSet.CustomersDataTable newCustomersTable;
newCustomersTable = customersTableAdapter1.GetData(); |