LINQ Query returns nothing.

Posted by gtas on Stack Overflow See other posts from Stack Overflow or by gtas
Published on 2010-04-22T19:36:23Z Indexed on 2010/04/22 19:43 UTC
Read the original article Hit count: 286

Filed under:
|

Why is this query returns 0 lines?

There is a record matching the arguments.

Deafkaw.Where(p => 
      (p.ImerominiaKataxorisis >= aDate && 
         p.ImerominiaKataxorisis <= DateTime.Now) &&
      (p.Year == etos && p.IsYpodeigma == false)
  ).ToList();

Am i missing something?

© Stack Overflow or respective owner

Related posts about linq-to-sql

Related posts about c#3.0