Setting up EnableCrossEntityTransactions for ServiceBusClient bind in ServiceBusTriggered function
See original GitHub issueQuery/Question Hi,
I am trying to do transaction processing with servicebus inside a ServiceBusTrigger like shown in the image:
However when I run it I get the following error:
It seems I am somehow missing setting up the ServiceBusClient that I bind in my parameters to have EnableCrossEntityTransactions
How do I do this? I can’t seem to find it in the docs.
Environment:
- Azure.Messaging.ServiceBus 7.5.0
- Windows 10 and .NetCore3.1
- IDE and version : [e.g. Visual Studio 16.3]
Issue Analytics
- State:
- Created 2 years ago
- Comments:6 (4 by maintainers)
Top Results From Across the Web
Azure Service Bus bindings for Azure Functions
This version allows you to bind to types from Azure.Messaging.ServiceBus. This extension version is available by installing the NuGet package, ...
Read more >Building resilient azure functions with retry policies
Use ServiceBus client for retries (default configuration handles that); Be cautious of the running time — the caller is waiting, and quick ...
Read more >Azure Functions V4 // ServiceBusTrigger and binding ...
I am working on an Azure Function (in-process model, V 4.1) ... ServiceBusMessageActions messageReceiver, ServiceBusClient client).
Read more >How can I configure an Azure Function triggered by ...
I want to be able to control the name of the Service Bus Queue or Subscription that my Azure Function reads from at...
Read more >Azure Functions Transaction Mode Error - .NET 6.0
I want to publish a message within my Azure Function, ... public override void Configure(IFunctionsHostBuilder builder) { var services ...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Thank you very much for the quick reply! This is great!
The docs PR has been merged and should be live on docs site shortly.