是否可以向方法发送表达式,获取方法名称并执行表达式并返回结果?
这个想法是:
internal T Execute<T>(Expression expr)
{
// Get method name and the parameters from the expression.
// Check the methodname+parameters against the db
// Execute the expression and return T
return Expression.Execute(expr);
}
调用将如下所示:
Expre