File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed
samples/azure/azure-table/table Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change 11---
22title : AzureTable Persistence Usage with non-default table
33summary : Using Azure Table Persistence to store sagas providing a non-default table dynamically
4- reviewed : 2022-11-17
4+ reviewed : 2025-02-25
55component : ASP
66related :
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
3737Configure the endpoint to use Azure Table Persistence.
3838
3939snippet: 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
4747snippet: BehaviorAddingTableInfo
4848
You can’t perform that action at this time.
0 commit comments