DecentDB.EntityFrameworkCore.Design 2.4.2

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

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
2.7.0 51 5/22/2026
2.6.0 51 5/21/2026
2.5.1 86 5/19/2026
2.5.0 87 5/18/2026
2.4.2 88 5/4/2026
2.4.1 105 4/30/2026
2.4.0 89 4/30/2026
2.3.0 97 4/20/2026
2.2.1 93 4/20/2026
2.2.0 98 4/19/2026
2.1.0 104 4/1/2026
2.0.1 103 3/29/2026
1.8.1 105 3/20/2026
1.8.0 99 3/19/2026
1.7.6 101 3/19/2026
1.7.5 92 3/19/2026
1.7.4 95 3/18/2026
1.7.3 98 3/18/2026
1.7.2 95 3/17/2026
1.7.1 99 3/16/2026
Loading failed