Results 44 comments of AdrianStrugala

The goal is introduce new AvroConvert feature: **var avro = AvroConvert.Json2Avro(string json);** Making this method generic, and providing T as type makes the implementation simple. In the case, if the...

Most of the work is ready on branch: [https://github.com/AdrianStrugala/AvroConvert/tree/feature/Json2Avro](https://github.com/AdrianStrugala/AvroConvert/tree/feature/Json2Avro). The only obstacle that is left is: how to distinguish between JSON Dictionary and Object representation. They are both serialized as...

Hello, 1) Collection of MyEvents can be deserialized by using: ```c# var result = AvroConvert.DeserializeHeadless(item.AvroRows.SerializedBinaryRows.ToByteArray(), readSession.AvroSchema.Schema) ``` 2) I will take a look at the datetime logical type. Could you...

Hello, I've spotted several issues with your files. First of all, there is no "datetime" logical type according to Avro [documentation](https://avro.apache.org/docs/current/spec.html); Datetime type is often represented as timestamp-millis logical type...

Hello, Thank you for creating the issue. I will take a look at this. Regards, Adrian

Hello, The issue seems to be more complex than expected. **Instant** is a struct holding its value as a private field. Additionally contains a couple of helper methods and other...

That's a brilliant idea Manvel and actually one of the directions that I was investigating some time ago. I was trying to build the whole expression tree based on the...

Hello, Thank you for your idea. I will investigate the solution and come back to you. Regards, Adrian

Hello @alexander-miglis, Sorry for the late answer. I am not sure if I get your question correctly, but the statement you have put is absolutely correct at the moment. As...

Hello @alexander-miglis The new feature is ready. It's available from v **3.4.0** I've found another way of doing so. It's simply: ```csharp dynamic deserializedObject = AvroConvert.Deserialize(byte[] avroObject); ``` Please let...