what is the best way to remove/skip an item from collection object
List<Person> personList = new List<Person>()
personList = dao.GetData(123);
personList = personList.Select(x => x.Comment... ????
resultset:
"GCE"
Not available
"" //comments
"RES"
9.97000000
9.99000000
........
........
........
so, i am targeting the field called "comments" and if the comments are empty then dont render.
i could have do that in foreach loop with an if condition but i am looking for the best practice
Whereextension method. – Servy Apr 17 '12 at 19:07