Skip to content

Commit 62bd539

Browse files
authored
Update sample.md
1 parent c495af9 commit 62bd539

File tree

1 file changed

+4
-4
lines changed
  • samples/azure/azure-table/transactions

1 file changed

+4
-4
lines changed

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

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -37,17 +37,17 @@ The OrderId is used as the partition key.
3737

3838
## Using Behaviors
3939

40-
The following shows 3 different ways to provide OrderIDs to the saga using [behaviors](/nservicebus/pipeline/manipulate-with-behaviors.md).
40+
The following shows two different ways to provide OrderIDs to the saga using [behaviors](/nservicebus/pipeline/manipulate-with-behaviors.md).
4141

42-
Most messages implement `IProvideOrderId` allowing the OrderId to be used as the partition key.
42+
1. Most messages implement `IProvideOrderId` allowing the OrderId to be used as the partition key.
4343

4444
snippet: BehaviorUsingIProvideOrderId
4545

46-
One of the handlers publishes an event that does not implement `IProvideOrderId` but adds a custom header containing the OrderId. The handler also creates `OrderShippingInformation` as part of the transactional batch provided by NServiceBus.
46+
2. One handler publishes an event that does not implement `IProvideOrderId` but adds a custom header containing the OrderId. The handler also creates `OrderShippingInformation` as part of the transactional batch provided by NServiceBus.
4747

4848
snippet: UseHeader
4949

50-
The header allows the partition key to be determined within the transport receive context.
50+
The custom header added then allows the partition key to be determined within `OrderIdHeaderAsPartitionKeyBehavior`.
5151

5252
snippet: BehaviorUsingHeader
5353

0 commit comments

Comments
 (0)