Skip to content

Commit 5310450

Browse files
committed
Docs review
1 parent c3fe251 commit 5310450

File tree

1 file changed

+4
-6
lines changed

1 file changed

+4
-6
lines changed

persistence/azure-table/migration-from-azure-storage-table-to-cosmos-table.md

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@ title: Migration from Azure Storage Table to Azure Cosmos DB Table API
33
component: ASP
44
related:
55
- persistence/azure-table
6-
reviewed: 2025-01-24
6+
reviewed: 2025-11-24
77
---
88

99
> [!WARNING]
10-
> The endpoint being migrated must be offline while migrating saga data. The saga data must be using secondary indexes (introduced in Azure Table Persistence 2.x) or be stored with Azure Table Persistence Version 3 or higher for this upgrade guide to succeed. The migration scenario described assumes only saga data of a one saga is stored per table.
10+
> The endpoint being migrated must be offline while migrating saga data. The migration scenario described assumes only saga data of one saga type is stored per table.
1111
1212
## Import data
1313

@@ -44,18 +44,16 @@ Create a `migrationsettings.json` file in the tool's directory with the followin
4444
`<SagaTableName>`: The name of the saga data table (e.g `OrderSagaData`).<br/>
4545

4646
> [!NOTE]
47-
> The migration tool automatically migrates all columns from the source table, including all saga properties and the standard NServiceBus columns (`Originator`, `OriginalMessageId`, `NServiceBus_2ndIndexKey`, `SagaId`). No explicit column projection is required.
47+
> The migration tool automatically migrates all columns from the source table, including all saga properties and the standard NServiceBus columns (`Originator`, `OriginalMessageId`, etc.). No explicit column projection is required.
4848
4949
### Example
5050

5151
For example, to import a single saga data table called `OrderSagaData` with the saga data type:
5252

5353
```
54-
public class OrderSagaData : IContainSagaData
54+
public class OrderSagaData : ContainSagaData
5555
{
5656
public Guid Id { get; set; }
57-
public string Originator { get; set; }
58-
public string OriginalMessageId { get; set; }
5957
public Guid OrderId { get; set; }
6058
public string OrderDescription { get; set; }
6159
public OrderState OrderState { get; set; }

0 commit comments

Comments
 (0)