Edi

Results 3 comments of Edi

In the meantime I am sending my events as such : "EventType {valid Json serialization of the Event}" The HubClient sends the event: ``` c# _hubClient.RaiseEvent(ochestration, nameof(EventArg), $"{nameof(EventArg) {JsonSerializer.Serialize(eventarg, JsonSerializerOptions.Default)}"...

> @theiszeduard I'll leave the issue open as a reminder to open another issue with a strongly-typed event handling design. > > Personally, what I have done is just override...

Probably I was late to the party but I had the same issue, my workaround was to do something like this. options.SerializerOptions = null; options.Serializer = new CosmosSystemTextJsonSerializer(serializerOptions ?? JsonSerializerOptions.Web);...