DecentDB.EntityFrameworkCore 2.4.1

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

DecentDB.MicroOrm

Micro-ORM for DecentDB, targeting .NET 10 (net10.0).

This package is intended for embedded use and includes:

  • DecentDB.MicroOrm (LINQ-style query surface)
  • DecentDB.AdoNet (ADO.NET provider)
  • DecentDB.Native (P/Invoke layer)

Install

dotnet add package DecentDB.MicroOrm --prerelease

Conventions

  • Properties are mapped by name to columns. Use [Column("name")] to override.
  • One property must be marked [PrimaryKey] or named Id (case-sensitive).
  • For read-only DTOs without a primary key, use ctx.QueryRawAsync<T>(sql).

POCO portability with EF Core

When sharing POCOs between EF Core and MicroOrm, MicroOrm auto-skips properties that are not natively bindable (reference types like navigation properties, collections, complex types). This means a POCO with public Artist? Artist { get; set; } works in both bindings — EF Core treats it as a navigation, MicroOrm ignores it. To force MicroOrm to include such a property, use [Column].

See the top-level .NET bindings README for the full list of bindable types.

Notes

  • The native engine library is shipped as a NuGet runtime native asset under runtimes/{rid}/native/.
  • Supported RIDs in this pre-release: linux-x64, osx-x64, win-x64.
  • If you only need direct ADO.NET usage (or EF provider dependencies), install DecentDB.AdoNet instead.

See the top-level .NET bindings README for the feature-parity matrix and connection-string documentation.

Repository: https://github.com/sphildreth/decentdb

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 (2)

Showing the top 2 NuGet packages that depend on DecentDB.EntityFrameworkCore:

Package Downloads
DecentDB.EntityFrameworkCore.NodaTime

NodaTime mappings for DecentDB EntityFrameworkCore provider

DecentDB.EntityFrameworkCore.Design

Entity Framework Core design-time services for DecentDB

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
2.7.0 34 5/22/2026
2.6.0 45 5/21/2026
2.5.1 89 5/19/2026
2.5.0 109 5/18/2026
2.4.2 115 5/4/2026
2.4.1 242 4/30/2026
2.4.0 105 4/30/2026
2.3.0 110 4/20/2026
2.2.1 111 4/20/2026
2.2.0 116 4/19/2026
2.1.0 114 4/1/2026
2.0.1 123 3/29/2026
1.8.1 113 3/20/2026
1.8.0 109 3/19/2026
1.7.6 114 3/19/2026
1.7.5 103 3/19/2026
1.7.4 101 3/18/2026
1.7.3 111 3/18/2026
1.7.2 108 3/17/2026
1.7.1 114 3/16/2026
Loading failed