How do I make a LINQ expression to call a method? - Stack Overflow most recent 30 from stackoverflow.com2009-12-17T12:23:19Zhttp://stackoverflow.com/feeds/question/913325http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/913325/how-do-i-make-a-linq-expression-to-call-a-method0How do I make a LINQ expression to call a method?Jason Baker2009-05-26T23:44:23Z2009-05-27T00:27:25Z
<p>I've been playing around with the <a href="http://www.codeplex.com/dlr" rel="nofollow">DLR</a> a bit and am a bit stuck on calling methods. For example, suppose I want to make an expression to push something onto a stack:</p>
<pre><code>class StackInfo{
protected Stack<SomeClass> _stack;
public Expression Push(SomeClass item)
{
MethodInfo mi = _stack.GetType().GetMethod("Push");
return Expression.Call(_stack, mi, item);
}
}
</code></pre>
<p>I'm getting stuck because I'm not really sure how to get an Expression out of _stack or item. Could somebody push me in the right direction? </p>
http://stackoverflow.com/questions/913325/how-do-i-make-a-linq-expression-to-call-a-method/913392#9133922Answer by Bryan Watts for How do I make a LINQ expression to call a method?Bryan Watts2009-05-27T00:12:28Z2009-05-27T00:27:25Z<p>Use the <code>Expression.Constant</code> factory method:</p>
<pre><code>class StackInfo
{
protected Stack<SomeClass> _stack;
public Expression Push(SomeClass item)
{
MethodInfo mi = _stack.GetType().GetMethod("Push");
return Expression.Call(Expression.Constant(_stack), mi, Expression.Constant(item));
}
}
</code></pre>