About 399 results
Open links in new tab
  1. Deserializing Json Streams using Newtonsoft.Json & System.Text.Json ...

    Nov 1, 2022 · Samples implementations are provided, for both C# and VB, for working with raw JSON data and zipped JSON data via the file system and web API. Both file system and web API streams …

  2. Working with Newtonsoft.Json in C# & VB - CodeProject

    Aug 15, 2017 · This article provides guidance on working with Newtonsoft.Json in C# and VB.NET, including examples and best practices for efficient JSON handling.

  3. Working with System.Text.Json in C# - CodeProject

    Aug 14, 2022 · Working with JSON Series Part 1: Working with Newtonsoft.Json in C# & VB Part 2: Working with System.Text.Json in C# (this article) Part 3: Deserializing Json Streams using …

  4. Adding Configuration to .NET 6 Projects using the IOptions Pattern

    Aug 10, 2022 · First, we create a ConfigurationBuilder and populate it with the config from our JSON file. Then, we create a ServiceCollection (the .NET DI container), add IOptions to it and register our …

  5. Entity Framework: Storing Complex Properties as JSON Text in Database

    Jan 17, 2017 · That’s all – whenever your model class is read from database or when context is saved, JSON string in these properties will be stored to JSON columns, and vice versa. Since external code …

  6. Inserting JSON Text into SQL Server Table - CodeProject

    Mar 25, 2016 · In the past, you probably had to parse this JSON using JSON.Net or some other serializer or use frameworks to map JSON into objects and then store them into database using …

  7. LiteDB - A .NET NoSQL Document Store in a Single Data File

    Jan 25, 2015 · BSON is a Binary JSON, a serialization for store data objects as binary array. In BSON, we have more data types than JSON, like DateTime, Guid and ObjectId. Documents using POCO …

  8. Cinchoo ETL - Parquet Writer - CodeProject

    Jun 18, 2020 · How to serialize Parquet to a file? How to serialize byte array to a file? How to serialize enum as integer to a file? How to exclude property from Serialization? How to convert XML to …

  9. Simple Kafka Producer and Consumer with C# and Scala

    Oct 28, 2019 · For both C# and Scala solutions, Avro schema file schema.json is placed in directory wwwroot under the solution's root directory. It is accessed either directly with file system (default) or …

  10. Cinchoo ETL - Parquet Reader - CodeProject

    Jun 5, 2020 · Cinchoo ETL provides ChoJSONWriter to generate JSON file from objects. With ChoParquetReader along with ChoJSONWriter, you can convert Parquet to JSON format easily.