We have a module for interpreting relatively small scripts. It works by "compiling" the statements into Linq Expressions and executing the expressions using provided arguments. Linq has been working nicely. (we considered using either Iron Python/Ruby/Scheme or C#'s Code provider, but for various reasons they didn't fit).

I now have a requirement that objects be extendable with dynamic attributes (name and type of some attributes not known until execution time). The fact that I'm accessing dynamic fields shouldn't be apparent to the script writers. My first thought was to use DynamicObject, but I'm not sure that buys me much in this case - I can't get the MemberInfo to access the dynamic fields to create the Linq Expressions. I rather thought DynamicObject was more or less created for this situation but don't see how to use it. Do I need to give up on Linq Expressions and just interpret the expressions myself?

link|improve this question

feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.