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: 306
linq-to-sql
|c#3.0
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