How do I make a LINQ expression to call a method? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-17T12:23:19Z http://stackoverflow.com/feeds/question/913325 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/913325/how-do-i-make-a-linq-expression-to-call-a-method 0 How do I make a LINQ expression to call a method? Jason Baker 2009-05-26T23:44:23Z 2009-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&lt;SomeClass&gt; _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#913392 2 Answer by Bryan Watts for How do I make a LINQ expression to call a method? Bryan Watts 2009-05-27T00:12:28Z 2009-05-27T00:27:25Z <p>Use the <code>Expression.Constant</code> factory method:</p> <pre><code>class StackInfo { protected Stack&lt;SomeClass&gt; _stack; public Expression Push(SomeClass item) { MethodInfo mi = _stack.GetType().GetMethod("Push"); return Expression.Call(Expression.Constant(_stack), mi, Expression.Constant(item)); } } </code></pre>