ExpandoObject is a .NET type whose members can be added and removed at runtime.
I'm trying to create a dynamic list of objects because I don't know what properties my objects will have until …
c# .net dynamic expandoobjectI would like to see if a property exist in a C# Expando Class. much like the hasattr function in …
c# dynamic expandoobjectCurrently I have the following method- public void CreateWorkbook<T>(List<T> ItemList) { PropertyInfo[] properties= typeof(…
c# dynamic expandoobjectI have an ExpandoObject which is created like so: public ExpandoObject Get() { var expando = new ExpandoObject(); var expandoDic = (IDictionary<…
c# dynamic ienumerable icollection expandoobjectA rather simple question really. I'm working on a project where I need to store and retrieve property values dynamically …
c# dictionary expandoobjectI want to use an ExpandoObject as the viewmodel for a Razor view of type ViewPage<dynamic>. I …
asp.net-mvc-3 dynamic razor anonymous-types expandoobjectIs there any way to use the new dynamic features in the 4.0 framework like ExpandoObject in VB.NET without setting …
vb.net dynamic .net-4.0 expandoobjectI'm trying to return the recently added entity Id in a Web Api action method as a JSON. Example: { bookId = 666 } …
dynamic asp.net-web-api2 expandoobjectI want to add an attribute to property of a dynamic object/expando object runtime, is it possible? What I …
c# dynamic expandoobjectI am using the following approach to convert most of my API JSON results into an object: public void ExpandoObject() { …
c# json json.net expandoobject