EfCore.Boost
1.0.0
See the version list below for details.
dotnet add package EfCore.Boost --version 1.0.0
NuGet\Install-Package EfCore.Boost -Version 1.0.0
<PackageReference Include="EfCore.Boost" Version="1.0.0" />
<PackageVersion Include="EfCore.Boost" Version="1.0.0" />
<PackageReference Include="EfCore.Boost" />
paket add EfCore.Boost --version 1.0.0
#r "nuget: EfCore.Boost, 1.0.0"
#:package EfCore.Boost@1.0.0
#addin nuget:?package=EfCore.Boost&version=1.0.0
#tool nuget:?package=EfCore.Boost&version=1.0.0
EfCore.Boost <img src="https://github.com/Svakinn/EfCoreBoost/blob/main/src/EfCoreBoost/icon.png" width="32" height="32" />
A disciplined Unit of Work + Repository + Routine + Model Building layer for Entity Framework Core that makes database access structured, portable, and predictable across SQL Server, PostgreSQL, and MySQL.
EfCore.Boost does not replace Entity Framework Core.
EF Core remains your ORM.
EfCore.Boost strengthens how EF Core is used in real-world, long-lived systems.
What EfCore.Boost Is
EfCore.Boost is an architectural extension layer on top of EF Core.
It introduces a consistent and disciplined data-access model that helps teams:
- enforce clear boundaries around database access\
- keep behavior predictable across database providers\
- treat views and routines as first-class citizens\
- support high-performance bulk ingestion\
- expose safe and powerful OData queries\
- maintain long-term portability
It is designed for systems that must grow without turning data-access into chaos.
What EfCore.Boost Is Not
- Not a replacement ORM\
- Not a code generator\
- Not a micro-ORM\
- Not a "magic performance switch"
EfCore.Boost is about architecture, discipline, and consistency.
Architectural Model (at a glance)
Application
→ Unit of Work (UOW)
→ Repositories & Routines
→ EF Core
→ Database
Key ideas:
- Applications talk to UOW, not DbContext\
- Repositories expose tables and views\
- Routines expose procedures and functions\
- Provider differences are absorbed by conventions
This creates a stable and testable data-access boundary.
Why EfCore.Boost Exists
As systems grow, direct DbContext usage tends to spread everywhere:
- inconsistent patterns\
- duplicated logic\
- provider-specific hacks\
- fragile migrations\
- unclear transaction boundaries
EfCore.Boost centralizes these concerns into a single, coherent layer.
You model intent in C#.
EfCore.Boost applies provider-correct behavior.
Model Building & Cross-Provider Conventions
EfCore.Boost establishes one uniform model-building contract across providers.
Instead of hand-tuning mapping rules per database, you define intent once and let EfCore.Boost apply provider-specific behavior.
protected override void OnModelCreating(ModelBuilder modelBuilder)
{
modelBuilder.ApplyEfBoostConventions(this, "log");
}
From that point:
- naming and quoting are normalized\
- identity/sequence behavior is handled\
- string and datetime quirks are corrected\
- routines and views follow a consistent pattern
The model remains portable.
Installation
dotnet add package EfCore.Boost
Documentation & Source
Full documentation, guides, and examples:
https://github.com/Svakinn/EfCoreBoost/
License
MIT
Actively developed.
| Product | Versions 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. |
-
net8.0
- Azure.Identity (>= 1.17.1)
- Microsoft.AspNetCore.OData (>= 9.4.1)
- Microsoft.Data.SqlClient (>= 6.1.2)
- Microsoft.EntityFrameworkCore (>= 8.0.21)
- Microsoft.EntityFrameworkCore.Relational (>= 8.0.21)
- Microsoft.EntityFrameworkCore.SqlServer (>= 8.0.21)
- Microsoft.Extensions.Configuration (>= 8.0.0)
- Microsoft.Extensions.Configuration.Abstractions (>= 8.0.0)
- Microsoft.Extensions.Configuration.Binder (>= 8.0.2)
- Microsoft.OData.Core (>= 8.4.2)
- Microsoft.OData.Edm (>= 8.4.2)
- Microsoft.Spatial (>= 8.4.2)
- Newtonsoft.Json (>= 13.0.3)
- Npgsql.EntityFrameworkCore.PostgreSQL (>= 8.0.4)
- Pomelo.EntityFrameworkCore.MySql (>= 8.0.3)
- System.Drawing.Common (>= 8.0.21)
- System.Text.Json (>= 8.0.6)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
First public preview with UOW/Repo helpers and initial analyzer integration.