Convert type 'System.Dynamic.DynamicObject to System.Collections.IEnumerable

user1842828 picture user1842828 · Nov 27, 2012 · Viewed 8.2k times · Source

I'm successfully using the JavaScriptSerializer in MVC3 to de-serialize a json string in to a dynamic object. What I can't figure out is how to cast it to something I can enumerate over. The foreach line of code below is my latest attemt but it errors with: "Cannot implicitly convert type 'System.Dynamic.DynamicObject' to 'System.Collections.IEnumerable'. How can I convert or cast so that I can iterate through the dictionary?

 public dynamic GetEntities(string entityName, string entityField)
        {
           var serializer = new JavaScriptSerializer();
            serializer.RegisterConverters(new[] { new                        MyProject.Extensions.JsonExtension.DynamicJsonConverter() });
           dynamic data = serializer.Deserialize(json, typeof(object));
           return data;
        }


 foreach (var author in GetEntities("author", "lastname"))

Answer

Chamila Chulatunga picture Chamila Chulatunga · Nov 29, 2012

Given your example usage of 'GetEntities', try changing its return type to IEnumerable<T> (or, although strongly not recommended, at least an IEnumerable<dynamic>). You would need to do some filtering within the method to extract the appropriate entities based on the 'entityName' input parameter. Although, it's unclear what the intended usage is of the other input parameter ('entityField').