I would like to design my application to do the following: 1. Send a LINQ query from a client to some WCF service on some server 2. That server receives that LINQ query and performs a linq-to-object search 3. The server then returns back the results.
Is this possible? If so how? I'm unable to find any tutorials on this topic.
Note: I do not want to send a method-call to a WCF service which then performs an underlying LINQ query. I would like the WCF service to receive some form of a custom LINQ query and compute it.