AvroConvert icon indicating copy to clipboard operation
AvroConvert copied to clipboard

Rapid Avro serializer for C# .NET

Results 31 AvroConvert issues
Sort by recently updated
recently updated
newest added

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...

dependencies

Add support to the new C# types: DateOnly and TimeOnly. The implementation should be compatible with .netstandard2.0 target framework.

feature

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...

help wanted
issue

### 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...

feature
help wanted

Add a method allowing schema comparison (from string or object). The result should contain all mismatching fields.

feature

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...

learning

[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...

help wanted
issue

Acceptance Criteria Example: int[,,] ArrayField - multidimensional array can be serialized - multidimensional array can be deserialized - multidimensional array is supported by codecs

feature

**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...

add docs

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...

bug