I want to use an ExpandoObject as the viewmodel for a Razor view of type ViewPage<dynamic>. I get an error when I do this
ExpandoObject o = new ExpandoObject();
o.stuff = new { Foo = "bar" };
return View(o);
what can I do to make this work?
|
I want to use an ExpandoObject as the viewmodel for a Razor view of type
what can I do to make this work?
| |||
|
feedback
|
|
You can do it with the extension method mentioned in this question: Dynamic Anonymous type in Razor causes RuntimeBinderException So your controller code would look like:
And then your view:
| |||||
feedback
|
|
Try setting the type as
Go through this excellent post on ExpandoObject | |||||
feedback
|
|
I stand corrected, @gram has the right idea. However, this is still one way to modify your concept. EditYou have to give
And, of course, the
| |||||||
feedback
|
|
Using the opensource
| |||
|
feedback
|