Can i do batching with Microsoft.Azure.ServiceBus .... i know there is an api exposed for batching in "Azure.Message.ServiceBus" sdk like await sender.SendMessagesAsync(messageBatch);but can i do something similar in "Microsoft.Azure.ServiceBus" ?
Yes, moreover the name of message field is ScheduledEnqueueTimeUtc, which suggests you it is in UTC. See my article where I was playing with scheduled messages gaevoy.com/2019/10/25/job-scheduler-via-azure-service-bus.html
The ScheduleMessageAsync method assumes you're passing in a UTC DateTime docs.microsoft.com/en-us/dotnet/api/microsoft.azure.servicebus.queueclient.schedulemessageasync?view=azure-dotnet#Microsoft_Azure_ServiceBus_QueueClient_ScheduleMessageAsync_Microsoft_Azure_ServiceBus_Message_System_DateTimeOffset_
How to replicate messages from queue/topic to different namespace queue/topic
How can you integrate azure service bus with an IBM MQ?
Can i do batching with Microsoft.Azure.ServiceBus .... i know there is an api exposed for batching in "Azure.Message.ServiceBus" sdk like await sender.SendMessagesAsync(messageBatch);but can i do something similar in "Microsoft.Azure.ServiceBus" ?
I am completely new with azure, so just need to understand, if load increases on service bus then how my consumer app service will scale?
Are these advanced feature configurable in portal without using mangmentclient or CLI ?
yes
Is there any link for code. Links like git hub
Will it use Utc date time in schedule
Yes, moreover the name of message field is ScheduledEnqueueTimeUtc, which suggests you it is in UTC. See my article where I was playing with scheduled messages gaevoy.com/2019/10/25/job-scheduler-via-azure-service-bus.html
The ScheduleMessageAsync method assumes you're passing in a UTC DateTime
docs.microsoft.com/en-us/dotnet/api/microsoft.azure.servicebus.queueclient.schedulemessageasync?view=azure-dotnet#Microsoft_Azure_ServiceBus_QueueClient_ScheduleMessageAsync_Microsoft_Azure_ServiceBus_Message_System_DateTimeOffset_