EfCore.Boost 1.0.4

There is a newer version of this package available.
See the version list below for details.
dotnet add package EfCore.Boost --version 1.0.4
                    
NuGet\Install-Package EfCore.Boost -Version 1.0.4
                    
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.4" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="EfCore.Boost" Version="1.0.4" />
                    
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.4
                    
#r "nuget: EfCore.Boost, 1.0.4"
                    
#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.4
                    
#: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.4
                    
Install as a Cake Addin
#tool nuget:?package=EfCore.Boost&version=1.0.4
                    
Install as a Cake Tool

EfCore.Boost

A disciplined Unit of Work + Repository + Routine + Model Building layer for Entity Framework Core that makes database access structured, portable, and powerful across SQL Server, PostgreSQL, and MySQL.

EfCore.Boost isn’t here to replace EF Core. It is designed for systems that require any of the following:

  • structured database access boundaries
  • predictable behavior across SQL Server, PostgreSQL, and MySQL
  • safe and powerful OData
  • high-performance bulk ingestion
  • first-class handling of views and routines
  • consistent transactional semantics
  • architecture that remains maintainable as systems grow

EF Core remains the ORM.
EfBoost strengthens how EF is used in real applications.


What EfCore.Boost Is

EfCore.Boost is an architectural extension layer on top of EF Core.

It simplifies model building and cross-platform conventions, and introduces a disciplined Unit-of-Work model for accessing tables, views, and stored procedures or functions.

EfCore.Boost is designed for systems that must grow without turning data access into chaos.

It is about architecture, discipline, and consistency.


Additional Capabilities

In addition to its core architectural model, EfCore.Boost provides several focused tools commonly needed in production systems:

  • Strong and natural OData support
    Expressive, safe query composition that integrates cleanly with EF Core while remaining provider-correct.

  • Simple, Azure-safe transaction model
    Explicit transactional boundaries designed to behave correctly under retries and transient failures.

  • Simple and powerful bulk inserts
    High-throughput ingestion helpers that operate within the same Unit-of-Work and transaction model.


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.
The idea is to simplify everyday creation and handling of database models.


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)
{
    base.OnModelCreating(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
1.0.7 37 3/10/2026
1.0.6 38 3/8/2026
1.0.5 93 2/19/2026
1.0.4 96 2/11/2026
1.0.3 94 2/7/2026
1.0.1 96 2/2/2026
1.0.0 94 2/2/2026

Simplified creation of the Unit of Work