Persisting and applying Linq Query to collection

Posted by MattiasK on Stack Overflow See other posts from Stack Overflow or by MattiasK
Published on 2011-01-03T22:10:15Z Indexed on 2011/01/03 23:53 UTC
Read the original article Hit count: 168

Filed under:
|
|
|

I have a scenario where I would want a plugin to construct a LINQ (to objects) query, send it across an appdomain and then apply and run it against a collection of my choosing

Is it possible, how?

If not, perhaps I could send a whole method (interface) across the appdomain and run it against the data on the appside? The main thing is that I want the data to reside in the CurrentDomain and the logic for operating on it in the plugin so I don't have to send the data across the boundary...

© Stack Overflow or respective owner

Related posts about c#

Related posts about .NET