Can I implement method_missing in C# 4 and have it actually return a value? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-03T00:25:33Z http://stackoverflow.com/feeds/question/283143 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/283143/can-i-implement-methodmissing-in-c-4-and-have-it-actually-return-a-value 3 Can I implement method_missing in C# 4 and have it actually return a value? ignu 2008-11-12T05:57:46Z 2009-09-07T23:00:01Z <p>I was trying to figure out how to implement method_missing in C# 4, based on all of 2 blog posts floating around on IDynamicObject. </p> <p>What I want to do is have a Business Logic Layer that has a Repository, and if the method is missing from the Business Logic Layer, just call the Repository and pass through its result. So i have a class that looks like this:</p> <pre><code>public class CustomerServices : IDynamicObject { protected CustomerRepository _Repository = new CustomerRepository(); MetaObject IDynamicObject.GetMetaObject(Expression parameter) { return new RepositoryMetaObject&lt;CustomerRepository&gt;(_Repository, parameter); } } </code></pre> <p>In RepositoryMetaObect I implement the Call method like so:</p> <pre><code> public override MetaObject Call(CallAction action, MetaObject[] args) { typeof(T).GetMethod(action.Name).Invoke(_Repository, getParameterArray(args)); return this; } </code></pre> <p>(The rest of RepositoryMetaObject code probably isn't interesting, but I've included it here: <a href="http://pastie.org/312842" rel="nofollow">http://pastie.org/312842</a>)</p> <p>The problem I think is that I'm never doing anything with the result of the Invoke, I'm just returning the MetaObject itself. </p> <p>Now when I do this:</p> <pre><code> dynamic service = new CustomerServices(); var myCustomer = service.GetByID(1); </code></pre> <p>GetByID is called, but if I try to access a property on myCustomer, is just hangs. </p> <p>Can anyone please help?</p> <p>Complete code can be downloaded ehre: https://dl.getdropbox.com/u/277640/BusinessLogicLayer.zip</p> http://stackoverflow.com/questions/283143/can-i-implement-methodmissing-in-c-4-and-have-it-actually-return-a-value/283207#283207 0 Answer by Jon Skeet for Can I implement method_missing in C# 4 and have it actually return a value? Jon Skeet 2008-11-12T06:58:09Z 2008-11-12T06:58:09Z <p>I believe you need to return a new MetaObject with the returned value as a constant expression.</p> <p>That's certainly what happens on <a href="http://www.codeproject.com/KB/cs/moemeka.aspx?display=Print" rel="nofollow">this CodeProject page</a>. Worth a try :)</p> http://stackoverflow.com/questions/283143/can-i-implement-methodmissing-in-c-4-and-have-it-actually-return-a-value/286218#286218 0 Answer by ravenex for Can I implement method_missing in C# 4 and have it actually return a value? ravenex 2008-11-13T03:53:26Z 2008-11-13T03:53:26Z <blockquote> <blockquote> <p>but if I try to access a property on myCustomer, is just hangs Can you set a breakpoint on the line after service.GetByID(1)? See what you've really got back from that call. Otherwise it's hard to tell what exactly happened.</p> </blockquote> </blockquote> http://stackoverflow.com/questions/283143/can-i-implement-methodmissing-in-c-4-and-have-it-actually-return-a-value/353847#353847 0 Answer by Mik Kardash for Can I implement method_missing in C# 4 and have it actually return a value? Mik Kardash 2008-12-09T19:04:35Z 2008-12-09T19:04:35Z <p>Instead of</p> <pre><code>return this; </code></pre> <p>Try doing something like this</p> <pre><code>return RepositoryMetaObject&lt;CustomerRepository&gt;( _Repository , System.Linq.Expressions.Expression.Constant(returnValue, returnValueType) ); </code></pre> <p>(still not sure why, but it works for me).</p>