Hi, I'm starting to look at LINQ and I understand the basics but can't figure out how to use LINQ to populate a custom object. I have a custom class that represents a standard ADO.Net DataSet. For simplicity this example will only contain a tables collection. My classes are as follows. public class testDataSet { public testDataSet() { Tables = new List testTable >(); } public testDataSet( List testTable > tables) { this .Tables = tables; } public List testTable > Tables; } public class testTable
Read More...