AvroConvert
AvroConvert copied to clipboard
Rapid Avro serializer for C# .NET
Bumps [Newtonsoft.Json](https://github.com/JamesNK/Newtonsoft.Json) from 12.0.3 to 13.0.1. Release notes Sourced from Newtonsoft.Json's releases. 13.0.1 New feature - Add JsonSelectSettings with configuration for a regex timeout Change - Remove portable assemblies from...
Add support to the new C# types: DateOnly and TimeOnly. The implementation should be compatible with .netstandard2.0 target framework.
Hello, I was wondering if this project supports the Instant data type from the NodaTime library? I tried to generate a schema for a simple record that had an Instant...
### Discussed in https://github.com/AdrianStrugala/AvroConvert/discussions/36 Originally posted by **vivekkwatra** April 7, 2021 Is there any sample to convert JSON string into Avro Generic Record for C#? FYI similar functionality available in...
Add a method allowing schema comparison (from string or object). The result should contain all mismatching fields.
I'm having trouble deserializing data stored in BigQuery. For context, BigQuery returns two elements: - `AvroSchema`: The schema in JSON - `AvroRows`: ByteString with multiple rows I'm trying the following...
[DataMember] fields are resolved during schema generation. There is no easy way (without significant performance hit) for serialization and deserialization of private fields. If you feel, that this is your...
Acceptance Criteria Example: int[,,] ArrayField - multidimensional array can be serialized - multidimensional array can be deserialized - multidimensional array is supported by codecs
**Describe the solution you'd like** We have a need to serialize DateTime values as a millis logical type, not micros, which is the default. There isn't a way to select...
An avro bytearray contains data in a list format. I have confirmed this by saving the bytearray to a file and using other tools to convert to json, in which...