MSSQL Outbox

The MSSQL Outbox provides a message store for the Transactional Outbox pattern using a Microsoft SQL Server database. This ensures that messages are saved within the same transaction as your business logic and published to a message broker later.

NuGet Packages

To use the MSSQL Outbox, you need to install the following packages from NuGet. If you are using Entity Framework Core, you will also need the EF Core integration package.

Install-Package Paramore.Brighter.MsSql
Install-Package Paramore.Brighter.Outbox.MsSql

For Entity Framework Core support:

Install-Package Paramore.Brighter.MsSql.EntityFrameworkCore

Database Table Schema

The MSSQL Outbox requires a specific table in your database to store messages before they are dispatched. You can generate the necessary SQL Data Definition Language (DDL) script to create this table using the MsSqlOutboxBuilder helper class.

Note: You are responsible for creating and maintaining this table. This includes tasks such as adding indexes to optimize query performance and managing schema migrations when updating to new versions of Brighter that may require additional columns.

Generating the DDL

The MsSqlOutboxBuilder.GetDDL() method creates the SQL script for you. You can execute this script against your database to create the outbox table.

// The table name can be whatever you choose.
string tableName = "Outbox"; 

// The DDL for a table that stores the message body as NVARCHAR(MAX)
string ddl = MsSqlOutboxBuilder.GetDDL(tableName);

// The DDL for a table that stores the message body as VARBINARY(MAX)
// Useful if your message body is binary
string binaryDdl = MsSqlOutboxBuilder.GetDDL(tableName, hasBinaryMessagePayload: true);

Example SQL Script

Running MsSqlOutboxBuilder.GetDDL("Outbox") will generate the following SQL script:

Configuration

To configure the MSSQL Outbox, you need to provide an outbox implementation in the AddProducers configuration when setting up Brighter.

1. Provide Database Configuration

First, define the configuration for your SQL Server database connection. We recommend retrieving the connection string from your application's configuration (e.g., appsettings.json) rather than hardcoding it.

2. Register the Outbox

Next, in your ConfigureServices method or Program.cs, add the outbox configuration when calling AddBrighter. You need to specify the Outbox, ConnectionProvider, and TransactionProvider.

The TransactionProvider depends on how you manage your database transactions.

  • Use MsSqlUnitOfWork for ADO.NET-based transaction management.

  • Use MsSqlEntityFrameworkConnectionProvider<T> if you are using Entity Framework Core, where T is your DbContext.

Example with Entity Framework Core

For more detailed information on integrating with Entity Framework Core, please see the EF Core Outbox documentation.

Here is a complete example of configuring the MSSQL Outbox with EF Core.

Last updated

Was this helpful?