vote up 4 vote down star

Consider the current algorithm below that iterates through a GridView's rows to find whether the contained Checkbox is selected/checked.

List<int> checkedIDs = new List<int>();

foreach (GridViewRow msgRow in messagesGrid.Rows)
{
  CheckBox chk = (CheckBox)msgRow.FindControl("chkUpdateStatus");
  if (chk.Checked){
   //we want the GridViewRow's DataKey value
   checkedMsgIDs.Add(int.Parse(messagesGrid.DataKeys[msgRow.RowIndex].Value.ToString()));
  }
}

This works as expected: you're left with a fully populated List<int>.

Question: How would you or could you re-write or improve this algorithm using LINQ to search the GridView for all the rows who have their Checkbox selected/checked?

flag

2 Answers

vote up 4 vote down check

I'm pretty sure you're not going to get any performance improvement from this, but it might make it slightly easier to read:

var checkedIDs = from GridViewRow msgRow in messagesGrid.Rows
                 where ((CheckBox)msgRow.FindControl("chkUpdateStatus")).Checked
                 select Int32.Parse(messagesGrid.DataKeys[msgRow.RowIndex].Value.ToString());

Again, not sure it makes a difference. Also, why are you converting to a string then to an int? Is there something Convert.ToInt32 can't do for you?

link|flag
Thanks LC! Convert.ToInt32 should work fine. Thanks for that enhancement as well! – pcampbell Aug 5 at 15:22
vote up 5 vote down

I am not sure if Rows is IEnumerable they may not be, but I am going to assume they are

List<int> checkedIDs = messagesGrid.Rows
  .Where<GridViewRow>(i => (CheckBox)i.FindControl("chkUpdateStatus").Checked)
  .Select<GridViewRow, int>(i => return int.Parse(messagesGrid.DataKeys[i.RowIndex].Value.ToString()))
  .ToList<int>();

I just did this in notepad, there might be a compile error in there. But this is how you could do the same thing with Linq.

link|flag
Yeah, looks like the same as mine, but in method syntax and with a ToList on the end (and explicit generic type specifiers). – lc Aug 5 at 15:21
Yep, I saw that. I like the method syntax to me it just looks cleaner. – David Basarab Aug 5 at 15:34

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.