Hi,
For the CRM to Azure function integration, most of the sending of the messages and the receiving of the messages is handled automatically, if you use the OOB functionality. All you do is specify the connection strings on both ends, and that will do most things.
With the support for partioning queues, I wonder if there is anything you can do from the connection string level to send and receive messages to specific partitions (Is there a format to follow)? I know from a code level you can send to a particular partition, but it would be good to specify at the connection string level to automatically route all messages to a specific partition.
Then from a consumer level, using the connection string, point to a particular partition to receive the messages (on a side note, is it also possible to do this from a .NET level?).
Thanks