NetEvolve.Pulse.SQLite 0.67.36

Prefix Reserved
dotnet add package NetEvolve.Pulse.SQLite --version 0.67.36
                    
NuGet\Install-Package NetEvolve.Pulse.SQLite -Version 0.67.36
                    
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="NetEvolve.Pulse.SQLite" Version="0.67.36" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="NetEvolve.Pulse.SQLite" Version="0.67.36" />
                    
Directory.Packages.props
<PackageReference Include="NetEvolve.Pulse.SQLite" />
                    
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 NetEvolve.Pulse.SQLite --version 0.67.36
                    
#r "nuget: NetEvolve.Pulse.SQLite, 0.67.36"
                    
#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 NetEvolve.Pulse.SQLite@0.67.36
                    
#: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=NetEvolve.Pulse.SQLite&version=0.67.36
                    
Install as a Cake Addin
#tool nuget:?package=NetEvolve.Pulse.SQLite&version=0.67.36
                    
Install as a Cake Tool

NetEvolve.Pulse.SQLite

NuGet Version NuGet Downloads License

SQLite persistence provider for the Pulse outbox pattern using plain ADO.NET. Designed for embedded, edge, and CLI scenarios where you need outbox reliability without external infrastructure.

Features

  • Embedded, single-file storage with no server dependency
  • ADO.NET implementation using Microsoft.Data.Sqlite
  • Safe concurrent polling via BEGIN IMMEDIATE transactions
  • Optional Write-Ahead Logging (WAL) for read/write concurrency
  • Outbox management APIs for inspecting, replaying, and cleaning messages
  • Configurable table name and connection string (file or in-memory)

Installation

NuGet Package Manager

Install-Package NetEvolve.Pulse.SQLite

.NET CLI

dotnet add package NetEvolve.Pulse.SQLite

PackageReference

<PackageReference Include="NetEvolve.Pulse.SQLite" />

Quick Start

using NetEvolve.Pulse;
using NetEvolve.Pulse.SQLite;

services.AddPulse(config => config
    .AddOutbox()
    .UseSQLiteOutbox("Data Source=outbox.db"));

Usage

Basic Example

services.AddPulse(config => config
    .AddOutbox()
    .UseSQLiteOutbox(opts =>
    {
        opts.ConnectionString = "Data Source=outbox.db";
        opts.EnableWalMode = true;
    }));

Advanced Example (In-Memory / Custom Table)

services.AddPulse(config => config
    .AddOutbox()
    .UseSQLiteOutbox(opts =>
    {
        opts.ConnectionString = $"Data Source=testdb_{Guid.NewGuid():N};Mode=Memory;Cache=Shared";
        opts.TableName = "OutboxMessage";
        opts.EnableWalMode = false; // WAL unsupported for in-memory
    }));

Configuration

services.AddPulse(config => config
    .AddOutbox()
    .UseSQLiteOutbox(opts =>
    {
        opts.ConnectionString = "Data Source=outbox.db";
        opts.TableName = "OutboxMessage";
        opts.EnableWalMode = true;
        opts.JsonSerializerOptions = new JsonSerializerOptions
        {
            PropertyNamingPolicy = JsonNamingPolicy.CamelCase
        };
    }));

Requirements

  • .NET 8.0 or higher (net8.0, net9.0, net10.0 targets)
  • SQLite database file access or in-memory connection string

Documentation

For complete documentation, please visit the official documentation.

Contributing

Contributions are welcome! Please read the Contributing Guidelines before submitting a pull request.

Support

License

This project is licensed under the MIT License - see the LICENSE file for details.


Made with ❤️ by the NetEvolve Team Visit us at https://www.daily-devops.net for more information about our services and solutions.

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.67.36 126 5/10/2026