Как создать динамический класс с Expression - PullRequest
1 голос
/ 28 октября 2011

Я хочу сделать что-то вроде этого:

Expression<Func<dynamic>> newClassExpression = //Create a new anonymous object
foreach (Expression exp in subSelector)
{
   //Create a new property into newClassExpression to affect exp.Compile().Invoke(f)
}
return newClassExpression.Compile(); //Return here the code for creation of the new class
...