IDynamicObject implementation ignores multiple property invocations - Stack Overflow most recent 30 from stackoverflow.com2009-12-08T03:32:55Zhttp://stackoverflow.com/feeds/question/292602http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/292602/idynamicobject-implementation-ignores-multiple-property-invocations0IDynamicObject implementation ignores multiple property invocationsJoshL2008-11-15T14:23:18Z2008-11-18T10:51:34Z
<p>I've implemented IDynamicObject in C# 4, return a custom MetaObject subclass that does simple property getter/setter dispatch to a Dictionary. Not rocket science.</p>
<p>If I do this:</p>
<pre><code>dynamic foo = new DynamicFoo();
foo.Name = "Joe";
foo.Name = "Fred";
Console.WriteLine(foo.Name);
</code></pre>
<p>Then 'Joe' is printed to the console... the second call to the 'Name' setter is never invoked (never steps into my custom dispatcher code at all).</p>
<p>I know the DLR does callsite caching, but I assumed that wouldn't apply here. Anyone know what's going on?</p>
http://stackoverflow.com/questions/292602/idynamicobject-implementation-ignores-multiple-property-invocations/292788#2927883Answer by Dino Viehland for IDynamicObject implementation ignores multiple property invocationsDino Viehland2008-11-15T17:29:52Z2008-11-15T17:29:52Z<p>Whatever MetaObject you're returning from (Bind)SetMember will be cached and re-used in this case. You have 2 dynamic sites doing sets. The 1st call will cache the result in an L2 cache which the 2nd site will pick up before asking you to produce a new rule.</p>
<p>So whatever MetaObject you're returning needs to include an expression tree that will update the value. For example it should do something like:</p>
<p>return new MetaObject(
Expression.AssignProperty(this.Expression, value.Expression),
Restrictions.TypeRestriction(this.Expression, this.Value.GetType());</p>