Generating dynamic C# based on textual data into the runtime?
- by WeNeedAnswers
Is there a quick and easy way to load textual C# into a program.
I would like to load the LINQ from the database as an Expression and run it against some data (SQL or Array/List don't mind).
I know I can do it using the C# CodeDom/ExpressionTree builder with Assembly Loading and Creating AppDomains, but this seems very long winded.
Is there an…