Multi-provider database support for SimpleModule with schema isolation per module.
dotnet add package SimpleModule.Databasepublic sealed class ProductsDbContext : ModuleDbContext<ProductsDbContext>
{
public DbSet<Product> Products => Set<Product>();
}- 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