I have a range of objects I want to serialize into one avro - since I need to match the Azure Eventhub Schema I need to store an object per Record.
Unfortunately, it seems the API is able to do so?
AvroConvert.Serialize accepts only a single object, and while merge could to the job, its serious overhead for the number of objects I have.
I considered using encoder directly, but sadly that class is internal.
I have a range of objects I want to serialize into one avro - since I need to match the Azure Eventhub Schema I need to store an object per Record.
Unfortunately, it seems the API is able to do so?
AvroConvert.Serialize accepts only a single object, and while merge could to the job, its serious overhead for the number of objects I have.
I considered using encoder directly, but sadly that class is internal.