EssenceLite.Infrastructure.SQLite 1.2.14

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

EssenceLite Framework (NuGet)

EssenceLite is a modular .NET framework for building multi‑tenant SaaS backends with authentication, authorization, tenancy, and strong DX.

  • Quick start and package overview: see framework/README.md in the repository
  • Throttling guide (MVP): see framework/docs/THROTTLING.md
  • RFCs and architecture: see RFC-002-Framework-Architecture.md

Install (typical)

<PackageReference Include="EssenceLite.Web" Version="$(Version)" />
<PackageReference Include="EssenceLite.Infrastructure.SQLite" Version="$(Version)" />
<PackageReference Include="EssenceLite.OpenApi" Version="$(Version)" />

<PackageReference Include="EssenceLite.Throttling" Version="$(Version)" />

Configure

var builder = WebApplication.CreateBuilder(args);

builder.Services.AddEssenceLite(builder.Configuration, options =>
{
    options.DatabaseProvider = DatabaseProvider.SQLite;
    options.ConnectionString = builder.Configuration.GetConnectionString("Default") ?? "Data Source=app.db";
    options.JwtSettings.Secret = builder.Configuration["Jwt:Secret"] ?? "dev-secret-change-me";

    // Tenancy and throttling
    options.TenancySettings.ResolutionStrategy = TenantResolutionStrategy.Header;
    options.RateLimitSettings.EnableRateLimiting = true;
    options.RateLimitSettings.PermitLimit = 100;
    options.RateLimitSettings.Window = TimeSpan.FromMinutes(1);
});

var app = builder.Build();
app.UseEssenceLite();

MIT License

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 was computed.  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 was computed.  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
1.2.14 37 2/10/2026
1.2.13 120 2/7/2026
1.2.12 115 1/28/2026
1.0.0-alpha.35 80 2/6/2026
1.0.0-alpha.34 28 2/6/2026
1.0.0-alpha.33 63 2/6/2026
1.0.0-alpha.32 68 2/5/2026
1.0.0-alpha.31 44 2/5/2026
1.0.0-alpha.30 64 2/2/2026
1.0.0-alpha.29 46 2/1/2026
1.0.0-alpha.28 42 1/31/2026
1.0.0-alpha.27 54 1/28/2026
1.0.0-alpha.26 46 1/28/2026
1.0.0-alpha.25 60 1/8/2026
1.0.0-alpha.20 48 1/7/2026
1.0.0-alpha.19 51 1/7/2026
1.0.0-alpha.18 51 1/7/2026
1.0.0-alpha.17 49 1/7/2026
1.0.0-alpha.16 54 1/6/2026
1.0.0-alpha.15 46 1/6/2026
Loading failed