How to write a MassTransit Json Deserializer for Azure Services
问题 here it is how I am publishing to an object to event grid. I want to be able to use the azure service bus to listen to it. public void Publicar<T>(T model, string operation, string entity) { _nomeEvento = entity + operation; Boolean.TryParse(Configuration["EventGridConfig:Enabled"], out var eventGridIsActive); if (!eventGridIsActive) return; var primaryTopicKey = Configuration["EventGridConfig:AcessKey"]; var primaryTopic = Configuration["EventGridConfig:Endpoint"]; var primaryTopicHostname =