Problem:
Possible Solutions to problem:
- With normal for loop
- With lamda expression and linq
1. With normal for loop:
Following is code from where we can get 3 rows of data table.private DataTable GetFirst3RowViaFor(DataTable dataTable) { DataTable newDataTable = dataTable.Clone(); for(int i=0;i<3;i++) { DataRow row = dataTable.Rows[i]; newDataTable.Rows.Add(row); } return newDataTable; }
Here in this way I have cloned data table structure and then I added first 3 rows of data table to new data table.
2. With lamda expression:
private static DataTable GetFirstThreeRowViaLinq(DataTable dataTable) { return dataTable.Rows.Cast<System.Data.DataRow>().Take(3).CopyToDataTable(); }
That’s it. Hope you liked it. Stay tuned more updates..