.Net framework has provided us a very useful class DataView that provide us the functionality to create desired view of data from a given DataTable or DataSet by specifying some row filtering or sorting expression. But many time we want to create a DataTable back from a DataView to perform some manipulation. In this example first I will create a DataView from a DataSet’s DataTable and than againg convert DataView into a DataTable
I have use the “NORTHWIND” database’s table “PRODUCTS” in my example
Other Related Posts
no fear choudhary is here,Sunday, November 21, 2010
Nice details about converting data view to data table.
Convert ASP to ASP.Net