Skip to content

Commit 0528df4

Browse files
committed
Add type conversion table to upgrade guide
1 parent 09c8810 commit 0528df4

File tree

1 file changed

+13
-1
lines changed

1 file changed

+13
-1
lines changed

nservicebus/upgrades/9.1to9.2/index.md

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,16 @@ In NServiceBus 9.2.x, the DataBus feature was removed from `NServiceBus.Core` an
1414

1515
The namespace for the DataBus feature has also changed from `NServiceBus.DataBus` to `NServiceBus.ClaimCheck`.
1616

17-
Update endpoint configuration code to use the new package and namespace. The API surface between the old and the new code remains the same.
17+
Update endpoint configuration code to use the new package and namespace. The API surface between the old and the new code has changed to use the term ClaimCheck instead of DataBus. The table below shows the mapping from the DataBus configuration types to their ClaimCheck equivalents.
18+
19+
| NServiceBus.DataBus | NServiceBus.ClaimCheck |
20+
| --- | --- |
21+
| `endpointConfiguration.UseDataBus` | `endpointConfiguration.UseClaimCheck` |
22+
| `NServiceBus.FileShareDataBus` | `NServiceBus.FileShareClaimCheck` |
23+
| `NServiceBus.SystemJsonDataBusSerializer` | `NServiceBus.SystemJsonClaimCheckSerializer` |
24+
| `NServiceBus.DataBusProperty<T>` | `NServiceBus.ClaimCheckProperty<T>` |
25+
26+
27+
The NServiceBus.ClaimCheck library is line-level compatible with NServiceBus.DataBus, endpoints using NServiceBus.DataBus need not be upgraded to ClaimCheck all at once .
28+
29+

0 commit comments

Comments
 (0)