Top "Linq-to-json" questions

An API to work with JSON objects.

Can I LINQ a JSON?

This is the JSON I get from a request on .NET: { "id": "110355660738", "picture": { "data": { "url": "https://fbcdn-profile-a.akamaihd.net/hprofile-ak-prn2/1027085_12033235063_5234302342947_…

c# .net json linq linq-to-json
Convert List<Property> To JObject

Consider this code: var joWork = ((JObject) x).Properties() .Where(p => p.Value.Type == JTokenType.String).ToList(); I end up …

c# json.net linq-to-json
JArray.Remove(JToken) does not delete

I have a JObject with a JSON like it: {"name" : "user1", "groups" : ["group 1", "group2"]} I would like to delete one …

c# json linq-to-json