Tag Archives: split datatable multiple tables C#

Split DataTable into multiple tables

Consider a DataTable with a column name salary, following code splits the DataTable on the basis of values in salary column, i.e all the rows in DataTable with same salary will come into one DataTable. DataTable dt= new DataTable(); dt … Continue reading

Posted in ASP.NET, C# | Tagged , , , , , , | Leave a comment