Consider a scenario where you want to retrieve a List or IEnumerable of the values of all the selected checkboxes in an <asp:CheckBoxList>.
Here's the current implementation:
IEnumerable<int> allChecked = (from item in chkBoxList.Items.Cast<ListItem>()
where item.Selected
select int.Parse(item.Value));
Question: How would you improve this LINQ query using a lambda expression or lambda syntax?
.Cast<ListItem>()is required because the CheckBoxList's collection of Items is of typeListItemCollection, and it doesn't have theWhereextension method. Here's the exception raised: Could not find an implementation of the query pattern for source type 'System.Web.UI.WebControls.ListItemCollection'. 'Where' not found. Consider explicitly specifying the type of the range variable 'item'. – p.campbell Jul 28 '09 at 18:47Castmethod was created to allow you to work around just these issues. Basically it allows you to use the new shiny LINQ operators even with older types that don't implementIEnumerable<T>. :) – Andrew Hare Jul 28 '09 at 18:56Castactually has corresponding syntactic sugar - you could just as well writefrom ListItem item in chkBoxList.Items. – Pavel Minaev Jul 28 '09 at 19:56