如何只将新添加的记录加载到datagridview中?

时间:2015-01-21 11:57:45

标签: vb.net datagridview

我正在开发VS 2010中的Windows应用程序

我使用泛型集合将数据绑定到网格。

这是代码

Private sub LoadAllCustomer()
Dim oCustomerCollection as new Customers
oCustomers.LoadAll() //Loads all the collection of customers
gvCustomerGrid.DataSource = oCustomerCollection 
End sub

以上代码工作正常...... 我有详细信息表格,将数据保存到DB中的客户表中。当我保存记录时,我只想在网格中添加新行包含最近添加的记录。

(之前,我使用的是Devexpress&#39的网格RefeshDataSource属性。  但现在我使用的是不具备此属性的Visual Studio网格。)

有什么办法吗?或者我必须再次将整个数据加载到网格中以显示最近添加的记录?

0 个答案:

没有答案