The Azure Service Bus Binding Function 2.x is straight forward to subscribe message from the queue, however, is there anyway that I can use same scenario to deal with any message that's being pushed into the DLQ using Azure Functions? I've been reading an article around it but looks like the tool/package is kind of old for the new Azure.ServiceBus API. What I'd like to do is to try fixing the message if possible, otherwise log the message in database. How would I setup my DLQ name in Azure Function?
You should be able to just create another function that is queue-triggered but for the queue name use the following syntax
<queueName> /$deadletterqueue