Freakout.MsSql 0.0.10

There is a newer version of this package available.
See the version list below for details.
dotnet add package Freakout.MsSql --version 0.0.10
NuGet\Install-Package Freakout.MsSql -Version 0.0.10
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Freakout.MsSql" Version="0.0.10" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Freakout.MsSql --version 0.0.10
#r "nuget: Freakout.MsSql, 0.0.10"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install Freakout.MsSql as a Cake Addin
#addin nuget:?package=Freakout.MsSql&version=0.0.10

// Install Freakout.MsSql as a Cake Tool
#tool nuget:?package=Freakout.MsSql&version=0.0.10

Freakout

📤 Just a general outbox thing

Why? Because "outbox" is closer to your chosen type of persistence (SQL Server, Postgres, etc.) than to anything else.

Which types of persistence does it support?

  1. Microsoft SQL Server (for when you're working with Microsoft.Data.SqlClient and SqlConnection)

and that's it for now. 😅

How?

First, enable Freakout in your app:

services.AddFreakout(new MsSqlFreakoutConfiguration(connectionString));

It will register a couple of things, e.g. a background worker that will poll the outbox for pending commands. AddFreakout can only be called once.

Then, add your handlers:

services.AddCommandHandler<RecalculateClaimSummaryCommandHandler>();
services.AddCommandHandler<SendEmailCommandHandler>();
services.AddCommandHandler<PublishRebusEventCommandHandler>();

which will of course be resolved from the container, each in their own service scope.

Now it's fully configured - what's missing is putting something in the outbox.

Since this example is for SQL Server, and we're pretending to be working with Microsoft.Data.SqlClient and SqlConnection, it's natural to provide the outbox functionality as an extension method to DbTransaction. This way, your code can do stuff like this:

await using var connection = new SqlConnection(_connectionString);
await connection.OpenAsync();

await using var transaction = await connection.BeginTransactionAsync();

// do your own work with connection+transaction here
// (...)

// possibly call this bad boy a couple of times
await transaction.AddOutboxCommandAsync(new PublishRebusEventCommand(
	Event: new JournalEntryAdded(Id: journalEntryId)
));

// do more of your own work
// (...)

// commit it all atomically
await transaction.CommitAsync();

which in this case would result in publishing a couple of JournalEntryAdded events using Rebus.

Btw. a command handler to do this could look like this:

public class PublishRebusEventCommandHandler(IBus bus) : ICommandHandler<PublishRebusEventCommand>
{
	public Task HandleAsync(PublishRebusEventCommand command, CancellationToken token) => bus.Publish(command.Event);
}

and that would be it.

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 is compatible.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 was computed. 
.NET Framework net461 was computed.  net462 is compatible.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
0.0.24 66 6/10/2024
0.0.23 64 6/10/2024
0.0.22 69 6/10/2024
0.0.21 110 4/16/2024
0.0.19 93 4/16/2024
0.0.18 80 4/15/2024
0.0.17 78 4/15/2024
0.0.16 83 4/15/2024
0.0.15 76 4/15/2024
0.0.14 80 4/15/2024
0.0.13 81 4/15/2024
0.0.12 68 4/15/2024
0.0.11 78 4/15/2024
0.0.10 73 4/15/2024
0.0.9 78 4/15/2024
0.0.8 82 4/15/2024
0.0.7 85 4/12/2024
0.0.6 85 4/12/2024
0.0.5 82 4/12/2024
0.0.4 84 4/12/2024
0.0.3 84 4/12/2024
0.0.2 91 4/4/2024
0.0.1 80 4/4/2024