LINQ - more than or equal to

Posted by trnTash on Stack Overflow See other posts from Stack Overflow or by trnTash
Published on 2010-06-03T13:06:30Z Indexed on 2010/06/03 13:14 UTC
Read the original article Hit count: 195

Filed under:
|
|

Part of the code:

...where se.DateFrom >= pDateFrom && se.DateTo <= pDateTo select se...

Does not work. There is no any error but the To and From days do not get returned.

How do I query "more than or equal to" and "less than or equal to"?

Thanks :)

© Stack Overflow or respective owner

Related posts about c#

Related posts about .NET