Bugs in Count....

Discussion of open issues, suggestions and bugs regarding ADO.NET provider for PostgreSQL
Post Reply
LPCRoy
Posts: 7
Joined: Mon 18 May 2009 20:45

Bugs in Count....

Post by LPCRoy » Fri 22 May 2009 00:40

Hi,
I've noticed that if I use a where statement before a Count statement in a select after a group by, the where statement is completely ignored.

For example

from x in dataContext.Table
where x.Parameter == value
group x by x.Value into y
select new {y.Key, FilteredCount = y.Where(z => z.SomeValue == true).Count()}


The filter "z => z.SomeValue == true" never gets evaluated and the count includes all items, not just ones that pass the filter.

AndreyR
Devart Team
Posts: 2919
Joined: Mon 07 Jul 2008 13:16

Post by AndreyR » Fri 22 May 2009 07:54

Thank you for the report, we have reproduced the problem.
I will let you know about the results of our investigation.

AndreyR
Devart Team
Posts: 2919
Joined: Mon 07 Jul 2008 13:16

Post by AndreyR » Tue 16 Jun 2009 14:21

This problem is fixed, look forward to the upcoming build of dotConnect for PostgreSQL.

Post Reply