XDev.Outbox.EFCore 0.2.6

dotnet add package XDev.Outbox.EFCore --version 0.2.6
                    
NuGet\Install-Package XDev.Outbox.EFCore -Version 0.2.6
                    
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="XDev.Outbox.EFCore" Version="0.2.6" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="XDev.Outbox.EFCore" Version="0.2.6" />
                    
Directory.Packages.props
<PackageReference Include="XDev.Outbox.EFCore" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add XDev.Outbox.EFCore --version 0.2.6
                    
#r "nuget: XDev.Outbox.EFCore, 0.2.6"
                    
#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.
#:package XDev.Outbox.EFCore@0.2.6
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=XDev.Outbox.EFCore&version=0.2.6
                    
Install as a Cake Addin
#tool nuget:?package=XDev.Outbox.EFCore&version=0.2.6
                    
Install as a Cake Tool

XDev.Outbox.EFCore

Summary

Easy to use outbox pattern implementation for EF Core. This library provides a simple way to implement the outbox pattern in your EF Core applications, allowing you to reliably send messages or events to external systems while ensuring that your database and message broker remain in sync.

NuGet

https://www.nuget.org/packages/XDev.Outbox.EFCore

Setup

After installation XDev.Outbox.EFCore, extend your DbContext from OutboxDbContext:

public class ApplicationDbContext : OutboxDbContext<int>
{
    public ApplicationDbContext(
        DbContextOptions<ApplicationDbContext> options) : base(options)
    {
    }

    public DbSet<User> Users { get; set; }
}

Add to your dependency injection setup:

...
services.AddOutbox(Assembly.GetExecutingAssembly());
services.AddEFCoreOutboxStore<ApplicationDbContext>();
...

Then run EF Core migrations to create the outbox table in your database:

dotnet ef migrations add Outbox

Usage

Subscribe to the outbox events in your application:

using XDev.Outbox;
public class UserCreatedEventHandler : ISubscriber<UserCreatedEvent>
{
    private readonly ILogger _logger;
    public UserCreatedEventHandler(ILogger<UserCreatedEventHandler> logger)
    {
        _logger = logger;
    }

    public async Task HandleEventAsync(UserCreatedEvent eventMessage, CancellationToken cancellationToken = default)
    {
        _logger.LogInformation("UserCreatedEventHandler received event: {message}", JsonSerializer.Serialize(eventMessage));
        await Task.Delay(1000, cancellationToken); // Simulate some processing delay
    }
}

Create new user logic:

var dbContext = serviceProvider.GetRequiredService<ApplicationDbContext>();
var outbox = serviceProvider.GetRequiredService<IOutbox>();
var newUser = new User
{
    Email = "testuser@example.com",
    CreatedDate = DateTime.UtcNow,
};
dbContext.Users.Add(newUser);
outbox.AddEvent(new UserCreatedEvent
{
    User = newUser
});
await dbContext.SaveChangesAsync(cancellationToken);

Thank you,

Daniel

Product Compatible and additional computed target framework versions.
.NET net8.0 is compatible.  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.  net9.0 is compatible.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 is compatible.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows 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.2.6 119 8/14/2026
0.2.5 98 8/14/2026
0.2.4 98 8/12/2026
0.2.3 1,068 8/11/2026
0.2.1 104 8/3/2026
0.2.0 108 7/30/2026