0

我正在删除 DataGridView 中的一行,并且此 Datgridview 绑定到数据表 (dt)。删除行后。数据表中该行的数据被删除并显示错误。

4

1 回答 1

1

有几种方法可以做到这一点。一种快速的方法是从修改后的数据表(删除后的数据表)中创建一个数据视图实例,然后在该数据视图上调用 ToTable() 方法。这将为我们提供原始数据。

DataView view= new DataView(yourTable, null, null, DataViewRowState.Deleted);
DataTable resultTable = view.ToTable();

另一种方法是

var rows=YourTable.Select(); // I assume your name of the table as YourTable and you can change it the way you want

foreach(var row in rows)
{
  if (row.RowState == DataRowState.Deleted)
{
   var splr_Cntctnm = (string)row["splr_Cntctnm", DataRowVersion.Original];
   //you can access all deleted field information as above
}

}
于 2013-05-30T05:35:29.613 回答