Expose IQueryable Over WCF Service
I've been learning about IQueryable and lazy loading/deferred execution of queries. Is it possible to expose this functionality over WCF? I'd like to expose a LINQ-to-SQL service that returns an IQueryable which I can then perform additional queries on at the client, and finally execute using a .ToList(). Is OData format applicable at all in this context? If possible, what is the term for this technique and what are some good tutorials I can follow? Thank you. You should check WCF Data Services which will allow you to define Linq query on the client. WCF Data Services are probably the only