About 30,200,000 results
Open links in new tab
  1. c# - Navigating or transforming JSON with Linq - Stack Overflow

    Feb 14, 2023 · Assuming you are using a recent version of .NET (e.g. .NET6) then you can use the built-in System.Text.Json libraries to parse your JSON input. If you need to use other parts …

  2. c# - Can I LINQ a JSON? - Stack Overflow

    Sep 12, 2013 · In a bind you could always deserialize the JSON and serialize it to XML, and load the XML in a XDocument. Then you can use the classic Linq to XML. When you are done take …

  3. Querying JSON with LINQ - Newtonsoft

    LINQ to JSON provides a number of methods for getting data from its objects. The index methods on JObject/JArray let you quickly get data by its property name on an object or index in a …

  4. JSON Query using LINQ in C# - CodeGuru

    Jun 2, 2021 · Microsoft has introduced LINQ to JSON, a highly anticipated feature in C#. This article explores how to retrieve JSON data from an API and parse it using LINQ. We will …

  5. Mastering JSON Manipulation in C# with LINQ - Web Dev Tutor

    Jul 22, 2024 · When working with JSON data in C#, the LINQ (Language Integrated Query) library provides powerful tools to query and manipulate JSON structures efficiently. In this blog post, …

  6. c# - Parsing JSON with LINQ into List of Objects - Stack Overflow

    Jun 21, 2018 · You don't need LINQ in this case unless you want to change the data structure. To parse json file to list you have to create a class that matches a structure of your file, like: class …

  7. How to Query JSON in C# using SQL, LINQ, ADO.NET

    Oct 19, 2023 · In this blog, we will look at ComponentOne DataConnector for JSON, which offers an effortless way to connect to JSON data using ADO.NET or Entity Framework Core. We’ll …

  8. Querying JSON using LINQ | DotNetCurry

    Jul 4, 2016 · JSON.NET is a great framework for working with JSON data. We will perform JSON Serialization and Deserialization operations and query data using LINQ.

  9. Querying JSON Arrays in C# - webdevtutor.net

    Jul 22, 2024 · By leveraging LINQ and libraries like Newtonsoft.Json, you can efficiently query and manipulate JSON arrays in C# for various data processing tasks. Experiment with these …

  10. Mastering JSON in C# with Newtonsoft.Json - ZetBit

    Jan 26, 2023 · Newtonsoft.Json provides support for LINQ to JSON, which allows you to query and modify JSON data using the LINQ syntax. This makes it easy to filter, transform, and …

  11. Some results have been removed