I want to select columns dynamically from List as following. So what could be the best way?
//a objects list
List<DashBoard> dashboardlist = (List<DashBoard>)objList;
string strColumns = "RecDate,ModifiedDate";
objList = (from obj in dashboardlist select new { strColumns }).ToList();
///////////// Ok,Just forget Object List say I have database table which have number of column ID,Name,Age,sex,etc ..Then I have columnList to display and the columnList is change according to condition . SO I have List people; and List columnTemplate; so now I want to select the column based on the template .

objList? I hope you realize it won't be as simple to access the properties as when you statically define the columns (select new { obj.RecDate, obj.ModifiedDate }) you're selecting so C# can create an anonymous type for you. It might be easier to simply keep using the fullDashBoardobjects and only read the properties specified by the strings as needed. – Tim S. Nov 22 '12 at 12:25List<Dashboard>with different properties initialized? – Rui Jarimba Nov 22 '12 at 12:47