First of all happy new year, secondly my new article is just published at Dotnetslackers. This explains the detail of creating custom LINQ providers using Linqextender. You can check that out at http://dotnetslackers.com/articles/csharp/CreatingCustomLINQProviderUsingLinqExtender...
We have seen that , while making general LINQ query provider , we have to implement IQueryable along with IQueryProvider. But what about the following query. var query = (from ph in context.Photos where ph.User == User && ph.PhotoSize == PhotoSize...