When trying to run the sample code here: http://www.nikhilk.net/Live-Search-REST-API.aspx

I get:

Error 52 The type or namespace name 'IDynamicObject' could not be found (are you missing a using directive or an assembly reference?) E:\repo\NikhilK-dynamicrest-a93707a\NikhilK-dynamicrest-a93707a\Core\DynamicObject.cs 19 43 DynamicRest

The project is running .net 4 - shouldn't this be a part of the standard imports? am i missing something? What do i need to do to make this work?

link|improve this question

Did you ever get the DynamicRest code working in .NET 4.0 RTM? It seems that this is not the only compilation error. If not, did you find a different solution to deserialising JSON to a dynamic? – Drew Noakes Sep 27 '10 at 12:53
nah - sorry dude - never got it working - it's a shame. there is RestSharp which IMO does a better job anyway - you should check that out - I did a short blog post on it: iwayneo.blogspot.com/2010/08/… – iwayneo Sep 27 '10 at 17:16
feedback

2 Answers

up vote 3 down vote accepted

I'm afraid that the interface has been renamed to IDynamicMetaObjectProvider (the new name is supposed to be more intuitive, I guess...):

link|improve this answer
fekin jokers! whay do they do that?! – iwayneo Jun 18 '10 at 12:27
feedback

Checkout the github repository here for updated code.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.