Microservices, in this project I have ExpenseService ( which divided to 4 projects Domain, Infraastructure, Application and API ), and AuthService.ExpenseService needs to store some info about a User in its own database, so for this when a user is created in AuthService the AuthService publish a UserCreatedMessage/Event to RabbitMQ using MassTransit, the ExpenseService is a subscriber in the Queue if that message.AuthService API the User is created and stored in the AuthService database, after that a UserCreatedMessage/Event should be published, but instead I get an Exception in the API that said : The entity name must not be null or empty
VS Code debugging console I get this exception Exception thrown: 'MassTransit.RabbitMqAddressException' in MassTransit.RabbitMqTransport.dll
Exception thrown: 'MassTransit.RabbitMqAddressException' in System.Private.CoreLib.dll
MassTransit Configs I did.