EfCore.Boost 1.0.0

There is a newer version of this package available.
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
                    
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="EfCore.Boost" Version="1.0.0" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="EfCore.Boost" Version="1.0.0" />
                    
Directory.Packages.props
<PackageReference Include="EfCore.Boost" />
                    
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 EfCore.Boost --version 1.0.0
                    
#r "nuget: EfCore.Boost, 1.0.0"
                    
#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 EfCore.Boost@1.0.0
                    
#: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=EfCore.Boost&version=1.0.0
                    
Install as a Cake Addin
#tool nuget:?package=EfCore.Boost&version=1.0.0
                    
Install as a Cake Tool

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 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
9.0.0 0 4/20/2026
8.0.0 38 4/17/2026
1.2.1 84 4/13/2026
1.2.0 82 4/9/2026
1.0.9 86 3/22/2026
1.0.8 92 3/15/2026
1.0.7 93 3/10/2026
1.0.6 86 3/8/2026
1.0.5 97 2/19/2026
1.0.4 101 2/11/2026
1.0.3 99 2/7/2026
1.0.1 100 2/2/2026
1.0.0 100 2/2/2026

First public preview with UOW/Repo helpers and initial analyzer integration.