From a3ad5b27a8a4869d193523f9876d04e2ff14b08f Mon Sep 17 00:00:00 2001 From: jasontaylordev Date: Wed, 22 Jul 2026 13:52:31 +1000 Subject: [PATCH] Update azure-service-bus-get-started guide --- .../azure-service-bus/azure-service-bus-get-started.mdx | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/src/frontend/src/content/docs/integrations/cloud/azure/azure-service-bus/azure-service-bus-get-started.mdx b/src/frontend/src/content/docs/integrations/cloud/azure/azure-service-bus/azure-service-bus-get-started.mdx index 2ca6ef83c..5b1114c2b 100644 --- a/src/frontend/src/content/docs/integrations/cloud/azure/azure-service-bus/azure-service-bus-get-started.mdx +++ b/src/frontend/src/content/docs/integrations/cloud/azure/azure-service-bus/azure-service-bus-get-started.mdx @@ -84,7 +84,16 @@ Getting there is a two-step process: model the Service Bus resources in your App +## Use with messaging frameworks + +With Aspire managing the Azure Service Bus resource and providing connection information, you can layer a higher-level messaging framework such as [MassTransit](https://masstransit.massient.com/) or [NServiceBus](https://particular.net/nservicebus) on top. +Building on the raw Service Bus connection, these frameworks add capabilities like message handlers, recoverability, sagas, and transactional outbox support, while Aspire continues to handle the resource lifecycle and connection wiring underneath. + +For example, the [Particular Service Platform Aspire integration](https://docs.particular.net/platform/aspire/) can orchestrate NServiceBus endpoints and supporting Service Platform components alongside the Azure Service Bus resource. + ## See also - [Azure Service Bus documentation](https://learn.microsoft.com/azure/service-bus-messaging/) - [Azure Service Bus Emulator overview](https://learn.microsoft.com/azure/service-bus-messaging/overview-emulator) +- [Sample using MassTransit with Aspire](https://github.com/MassTransit/Sample-Aspire) +- [Particular Service Platform with Azure Service Bus in Aspire (sample)](https://docs.particular.net/samples/aspire/platform-asb/)