From ba39e6f97a091be22e5bf6576a0f2995800d6f6b Mon Sep 17 00:00:00 2001 From: Adam Wright Date: Fri, 20 Sep 2024 14:37:42 -0500 Subject: [PATCH] Update sqlserver-combining-persistence-wth-transport.md --- ...server-combining-persistence-wth-transport.md | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) diff --git a/persistence/sql/sqlserver-combining-persistence-wth-transport.md b/persistence/sql/sqlserver-combining-persistence-wth-transport.md index b67fb6a1b00..3dcc029804d 100644 --- a/persistence/sql/sqlserver-combining-persistence-wth-transport.md +++ b/persistence/sql/sqlserver-combining-persistence-wth-transport.md @@ -11,6 +11,15 @@ related: When combining [SQL Server transport](/transports/sql) and [SQL persistence using the Sql dialect](/persistence/sql), the connection behaves differently based on whether the [Outbox](/nservicebus/outbox/) is enabled or disabled. This influences where the saga data is stored. +### With Outbox + +SQL Transport
TransactionMode | Connection sharing | Saga location +:-:|:-:|:-: +TransactionScope | Not supported | N/A +AtomicSendsWithReceive | Not supported | N/A +ReceiveOnly | Connection sharing via SQL Transport storage context | Persistence DB +None | Not supported | N/A + ### Without Outbox SQL Transport
TransactionMode | Connection sharing | Saga location @@ -28,11 +37,4 @@ When an endpoint uses SQL Persistence combined with the SQL Server Transport wit partial: Connection -### With Outbox -SQL Transport
TransactionMode | Connection sharing | Saga location -:-:|:-:|:-: -TransactionScope | Not supported | N/A -AtomicSendsWithReceive | Not supported | N/A -ReceiveOnly | Connection sharing via SQL Transport storage context | Persistence DB -None | Not supported | N/A