Skip to content

Commit 4ab8d67

Browse files
authored
Update sample.md
1 parent 002ef89 commit 4ab8d67

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

samples/azure/azure-table/table/sample.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: AzureTable Persistence Usage with non-default table
33
summary: Using Azure Table Persistence to store sagas providing a non-default table dynamically
4-
reviewed: 2022-11-17
4+
reviewed: 2025-02-25
55
component: ASP
66
related:
77
- nservicebus/sagas
@@ -17,32 +17,32 @@ Ensure that an instance of the latest [Azure Storage Emulator](https://docs.micr
1717

1818
### SharedMessages
1919

20-
The shared message contracts used by all endpoints.
20+
* The shared message contracts used by all endpoints.
2121

2222
### Client
2323

2424
* Sends the `StartOrder` message to `Server`.
2525
* Receives and handles the `OrderCompleted` event.
2626

27-
### Server projects
27+
### Server
2828

2929
* Receive the `StartOrder` message and initiate an `OrderSaga`.
3030
* `OrderSaga` sends a `ShipOrder` command to `ShipOrderSaga`
3131
* `ShipOrderSaga` requests a timeout with an instance of `CompleteOrder` with the saga data.
3232
* `ShipOrderSaga` replies with `CompleteOrder` when the `CompleteOrder` timeout fires.
3333
* `OrderSaga` publishes an `OrderCompleted` event when the `CompleteOrder` message arrives.
3434

35-
### Persistence config
35+
## Persistence config
3636

3737
Configure the endpoint to use Azure Table Persistence.
3838

3939
snippet: AzureTableConfig
4040

41-
In the non-transactional mode the saga id is used as a partition.
41+
In the non-transactional mode the saga id is used as a partition key.
4242

4343
## Behaviors
4444

45-
For all messages destined to go to the `ShipOrderSaga` the table is overridden at runtime to use `ShipOrderSagaData` table.
45+
For all messages destined to go to the `ShipOrderSaga` the table is overridden at runtime to use the `ShipOrderSagaData` table.
4646

4747
snippet: BehaviorAddingTableInfo
4848

0 commit comments

Comments
 (0)