I have a scenario where I would want a plugin to construct a LINQ (to objects) query, send it across a开发者_StackOverflown appdomain and then apply and run it against a collection of my choosing
Is it possible, how?
Take a look a the Dynamic Linq Library may be it can help you
Expression trees are not serialisable because they contain references to code. You might want to use an alternative format for describing your query across your AppDomain boundary, such as xml, etc.
精彩评论