Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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

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"))
like image 609
user1842828 Avatar asked Nov 27 '12 20:11

user1842828


2 Answers

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').

like image 129
Chamila Chulatunga Avatar answered Sep 29 '22 06:09

Chamila Chulatunga


DynamicObject is inherited from IDictionary, so you can cast it to IDictionary.

public IDictionary<string, object> 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 as IDictionary<string, object>;
    }




foreach (var author in GetEntities("author", "lastname"))
like image 40
Kirill Bestemyanov Avatar answered Sep 29 '22 07:09

Kirill Bestemyanov