vote up 0 vote down star
1

I have a DataGridView that I want to query using Linq (C# WinForm). I want to "count" rows where a certain criteria is met. For example,

variable1 = "count rows where ColumnBoxAge > 3 || < 5"

label1.Text = variable1

How to do this in C# WinForm using Linq?

flag

What do you have as a DataSource in your DataGridView? – yapiskan Nov 21 '08 at 7:33
i have a dataset from a SQL Server stored proc – MarlonRibunal Nov 21 '08 at 7:39

3 Answers

vote up 1 vote down check

I don't know if it could work but you can try this;

dataSet.Tables[0].AsEnumerable().Where(c => c.Field<int>("ageColumn") > 3 ||
     c.Field<int>("ageColumn") < 5).Count();

Edit : Where instead of Select.

link|flag
it's counting all rows in the dgv...not what I want. Shld be "count rows where BoxAge is between 3 and 5"... – MarlonRibunal Nov 21 '08 at 8:01
Now that's working...(See Edit) – MarlonRibunal Nov 21 '08 at 21:00
vote up 0 vote down

@yapiskan

dataSet.Tables[0].AsEnumerable().Where(c => c.Field<int>("ageColumn") > 3 &&
     c.Field<int>("ageColumn") < 5).Count();

.Where instead of .Select

Thank you very much! I appreciate your help.

link|flag
Oops, sure it is! – yapiskan Nov 21 '08 at 8:23
vote up 0 vote down

So your query is wrong! Try to put '&&' instead of '||';

dataSet.Tables[0].AsEnumerable().Where(c => c.Field<int>("ageColumn") > 3 &&
     c.Field<int>("ageColumn") < 5).Count();

Edit : Where instead of Select.

link|flag

Your Answer

Get an OpenID
or

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