hot questions tagged idynamicobject - Stack Overflowmost recent 30 from stackoverflow.com2009-12-12T01:59:16Zhttp://stackoverflow.com/feeds/tag?tagnames=idynamicobject&sort=hothttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1691559/missing-system-scripting-in-vs-net-2010-where-can-i-find-it0Missing System.Scripting in VS.Net 2010-Where can I find it?Jon Swinghammer2009-11-07T01:23:13Z2009-11-07T01:35:49Z
<p>I installed VS.Net 2010 to play around with some of the new C# features and I'm trying to use the IDynamicObject interface but I can't because it can't find the System.Scripting namespace. What do I need to install to get this?</p>
<p>Thanks!</p>
http://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/245975/how-do-you-implement-c4s-idynamicobject-interface3How do you implement C#4's IDynamicObject interface?Rasmus Faber2008-10-29T06:38:02Z2008-11-04T00:33:23Z
<p>To implement "method-missing"-semantics and such in C# 4.0, you have to implement IDynamicObject:</p>
<pre><code>public interface IDynamicObject
{
MetaObject GetMetaObject(Expression parameter);
}
</code></pre>
<p>As far as I can figure out IDynamicObject is actually part of the DLR, so it is not new. But I have not been able to find much documentation on it.</p>
<p>There are some very simple example implementations out there (f.x. <a href="http://blogs.msdn.com/cburrows/archive/2008/10/28/c-dynamic-part-ii.aspx" rel="nofollow">here</a> and <a href="http://code.msdn.microsoft.com/csharpfuture/Release/ProjectReleases.aspx?ReleaseId=1686" rel="nofollow">here</a>), but could anyone point me to more complete implementations or some real documentation?</p>
<p>Especially, how exactly are you supposed to handle the "parameter"-parameter?</p>
http://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>