2012年6月15日 星期五

{Knowledge}DataTable.AcceptChanges()使用

DataTable.AcceptChanges()方法:
在使用DataRow Delete()刪除一列資料後 在使用DataTable AcceptChanges即為完全刪除(RemoveAt()),無法在回溯資料,如單純使用Delete()居則可以再回溯資料。
回溯資料的方法:RejectChanges()

Ex:
AcceptChanges();
Delete();
//回溯資料
RejectChanges()
//真正刪除
AcceptChanges();



參考資訊:
http://flylolo.blog.51cto.com/2743516/602066

http://tangzhongxin.blog.163.com/blog/static/89219612011222405917/