I would like to add one more query to this.. How Can Convert DataRow to DataRowView in c#
DataRowView drv= dt.DefaultView[dt.Rows.IndexOf(dr)];
This is the code which is mentioned there..
Assume a scenario, that a column has sorted and if i try to get the row view based on the row index, it will mismatch..
How could overcome this?