Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions Snippets/ASP/ASTP_6/Usage.cs
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,21 @@ void CustomizingAzurePersistenceSagas(EndpointConfiguration endpointConfiguratio
#endregion
}

#pragma warning disable CS0618
void CustomizingAzurePersistenceSagasCompatibility(EndpointConfiguration endpointConfiguration)
{
#region AzurePersistenceSagasCompatibility

var persistence = endpointConfiguration.UsePersistence<AzureTablePersistence, StorageType.Sagas>();

var compatibility = persistence.Compatibility();
// e.g. Enable secondary index
compatibility.EnableSecondaryKeyLookupForSagasCorrelatedByProperties();

#endregion
}
#pragma warning restore CS0618

public void ConfigureCustomJsonSerializerSettings(EndpointConfiguration endpointConfiguration)
{
#region AzurePersistenceSagasJsonSerializerSettings
Expand Down
4 changes: 2 additions & 2 deletions menu/menu.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -1125,8 +1125,8 @@
Articles:
- Title: Azure Table
Articles:
- Url: persistence/upgrades/asp-5to6
Title: Version 5 to 6
- Url: persistence/upgrades/asp-6to7
Title: Version 6 to 7
- Url: persistence/upgrades/asp-4to5
Title: Version 4 to 5
- Url: persistence/upgrades/asp-2to3
Expand Down
Original file line number Diff line number Diff line change
@@ -1,16 +1,17 @@
---
title: Azure Storage Persistence Upgrade Version 5 to 6
summary: Instructions on how to migrate from Azure Table Persistence version 5 to 6
reviewed: 2024-04-26
title: Azure Storage Persistence Upgrade Version 6 to 7
summary: Instructions on how to migrate from Azure Table Persistence version 6 to 7
reviewed: 2025-09-10
component: ASP
related:
- persistence/azure-table
redirects:
isUpgradeGuide: true
upgradeGuideCoreVersions:
- 9
- 10
---

## Saga compatibility mode

[Configuring saga compatibility](/persistence/azure-table/configuration.md?version=astp_5#saga-compatibility-configuration) is no longer supported for saga instances persisted by NServiceBus.Persistence.AzureStorage versions 1 and 2. Legacy endpoint instances that have this configuration must be upgraded to remove it.
[Configuring saga compatibility](/persistence/azure-table/configuration.md?version=astp_6#saga-compatibility-configuration) is no longer supported for saga instances persisted by NServiceBus.Persistence.AzureStorage versions 1 and 2. Legacy endpoint instances that have this configuration must be upgraded to remove it.
Loading