How to Convert DataTable to Collection of Custom Class object
Imagine you have a DataTable with Records and you want to Convert that to a List of your Custom class objects ? how do you do that ? The normal -straight forward way is to Loop through each DataRow, Create a new instance of Custom class object, read the column values of the current row(iterator) [...]
