The data I am trying to Deserialize is exacly like this json in this post>
Deserialize JSON Facebook feed using Gson , Only with more objects, inside the container.. and i'm not using "Gson"
I think some of the objects even have their own containers nested somewhere, but that is not the issue at present, the main issue is that I am having problems deserializing into the following class..
public class Rootobject
{
public int found { get; set; }
public Post[] posts { get; set; }
public Meta meta { get; set; }
}
I understand that the way the json from the API is layed out, it some sort of array, in the Json.net docs, they call it a DataSet.. I am using Json.Net
my most recent attempt to deserialize is;
List<Rootobject> data = JsonConvert.DeserializeObject<List<Rootobject>>(stringData);
But still data is null and I get;
Additional information:
Cannot deserialize the current JSON object (e.g. {"name":"value"}) into type 'System.Collections.Generic.List`1[WebApplication17.Models.Rootobject]' because the type requires a JSON array (e.g. [1,2,3]) to deserialize correctly.
perhaps LINQ to JSON is the way to go not sure as yet.. any suggestions?
The first thing is the JSON at the post is not a valid JSON string so it cannot be desearlized. Secondly I tried to rectify and correct the JSON to make it a valid JSON and thus your JSON looks like
So the Classes structure would be something like this
and then Desearlize it normally like you were doing