SimpleModule.Database 0.0.40

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

SimpleModule.Database

NuGet

Multi-provider database support for SimpleModule with schema isolation per module.

Installation

dotnet add package SimpleModule.Database

Quick Start

public sealed class ProductsDbContext : ModuleDbContext<ProductsDbContext>
{
    public DbSet<Product> Products => Set<Product>();
}

Key Features

  • Schema isolation -- each module gets its own database schema (or table prefix for SQLite)
  • SQLite support for development and lightweight deployments
  • PostgreSQL support for production workloads
  • SQL Server support for enterprise environments
  • EF Core integration with per-module DbContext registration
Product Compatible and additional computed target framework versions.
.NET 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 (21)

Showing the top 5 NuGet packages that depend on SimpleModule.Database:

Package Downloads
SimpleModule.Hosting

Host builder extensions for SimpleModule. Configures module registration, endpoint mapping, and middleware pipeline.

SimpleModule.Users

Users module for SimpleModule. User authentication and identity management via ASP.NET Core Identity.

SimpleModule.AuditLogs

Audit logging module for SimpleModule. Captures HTTP requests, domain events, and entity changes with configurable retention.

SimpleModule.Settings

Settings module for SimpleModule. Application and user-scoped configuration with theme and language preferences.

SimpleModule.FileStorage

File storage module for SimpleModule. Manages file uploads and downloads with configurable storage providers.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
0.0.40 228 2026/8/8
0.0.39 326 2026/6/22
0.0.38 282 2026/6/3
0.0.37 240 2026/6/3
0.0.36 295 2026/5/1
0.0.35 283 2026/4/30
0.0.34 276 2026/4/29
0.0.33 267 2026/4/23
0.0.32 259 2026/4/23
0.0.30 235 2026/4/1
0.0.29 205 2026/4/1
0.0.28 215 2026/4/1
0.0.27 220 2026/3/30
0.0.26 193 2026/3/30
0.0.25 205 2026/3/30
0.0.24 200 2026/3/30
0.0.23 204 2026/3/30
0.0.22 208 2026/3/30
0.0.21 197 2026/3/29
0.0.20 199 2026/3/29
Loading failed