I'm trying to understand what needs to be done to use sql server for with NServicebus in .Net Core
Let s say I have MicroserviceA sending a command to MicroserviceB
- Do I need to have a common project between both solutions that would share the MyCommand?
- How should I structure my db schema for nservicebus? Should I it be, for example, _endpoint.Send("receiver.microserviceB", myCommand) from the publisher and microserviceB will subscribe to receive.microserviceB?
- Not too sure where the data is stored if I publish an event instead of a command.
- How can I have different settings for different environment? Eg:SQL transport for local, sqs in prod
Thanks