0
kicks
Multiple Item support for same property in where clause : LinqExtender
Just a few days ago I have rolled up another patch for LinqExtender which is 1.3.2 , this is reported to me from a work item, especially to support the following query
var query = from book in _context.Books
where book.PublishedDate > someDate
and book.PublishedDate < someDate
select book;
...