User ignu - Stack Overflowmost recent 30 from stackoverflow.com2009-12-09T20:41:30Zhttp://stackoverflow.com/feeds/user/24616http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/283143/can-i-implement-methodmissing-in-c-4-and-have-it-actually-return-a-value4Can I implement method_missing in C# 4 and have it actually return a value?ignu2008-11-12T05:57:46Z2009-12-07T02:42:28Z
<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<CustomerRepository>(_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/244302/what-do-you-think-of-the-new-c-4-0-dynamic-keyword/245630#2456300Answer by ignu for What do you think of the new C# 4.0 'dynamic' keyword?ignu2008-10-29T02:46:23Z2008-10-29T02:46:23Z<p>dynamic is awesome. </p>
<p>now just give method missing so i don't have to write those classes in ruby.</p>
http://stackoverflow.com/questions/178407/select-all-child-elements-except-the-first/178723#1787230Answer by ignu for Select all child elements except the firstignu2008-10-07T14:31:45Z2008-10-07T14:31:45Z<p>i'd use</p>
<pre><code>$("li:gt(0)").addClass("something");
</code></pre>
http://stackoverflow.com/questions/163600/when-not-to-comment-code/164156#1641562Answer by ignu for When NOT to comment codeignu2008-10-02T19:36:21Z2008-10-02T19:36:21Z<p>At worst, comments can lie. At best, they can be redundant.</p>
<p>They're usually only okay for something unintuitive. As in.</p>
<pre><code>// HACK: If I don't call this twice, Foo breaks.
Bar.Setup();
Bar.Setup();
</code></pre>
<p>If you have a method like this</p>
<pre><code>User.Save();
// Send confirmation email...
</code></pre>
<p>That's a code smell, and you should refactor to method.</p>
<pre><code>User.Save();
sendConfirmationEmail();
</code></pre>
http://stackoverflow.com/questions/1384/subsonic-vs-nhibernate/164113#1641132Answer by ignu for Subsonic Vs NHibernateignu2008-10-02T19:26:10Z2008-10-02T19:26:10Z<p>Consider your team and project size when considering ActiveRecord.</p>
<p>In my experience, ActiveRecord is an abstraction on top of NHibernate that starts leaking like a sieve when trying more complicated scenarios. </p>
<p>If you have a moderately to heavily complicated or non-straightforward schema, stick with NHibernate. You can slice and dice it to near perfection. </p>
<p>The other place you might get into trouble is when you need a moderately complicated query. ActiveRecord hides a lot of NHibernate's implementation... but you'll need it for a complicated query, which will become very difficult if you're completely unfamiliar with HQL. Be careful team members don't just hack away at the edges instead of learning NHibernate and HQL.</p>