ORMData.All 10.1.4

dotnet add package ORMData.All --version 10.1.4
                    
NuGet\Install-Package ORMData.All -Version 10.1.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="ORMData.All" Version="10.1.4" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="ORMData.All" Version="10.1.4" />
                    
Directory.Packages.props
<PackageReference Include="ORMData.All" />
                    
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 ORMData.All --version 10.1.4
                    
#r "nuget: ORMData.All, 10.1.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 ORMData.All@10.1.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=ORMData.All&version=10.1.4
                    
Install as a Cake Addin
#tool nuget:?package=ORMData.All&version=10.1.4
                    
Install as a Cake Tool

ORMData.All - Meta Package

This is a meta-package that includes all database providers for ORMData ORM.

Purpose

This package provides backward compatibility with previous monolithic versions of ORMData where all providers were included by default.

Included Providers

  • ORMData.SqlServer - SQL Server support
  • ORMData.PostgreSql - PostgreSQL support
  • ORMData.MySql - MySQL/MariaDB support
  • ORMData.Sqlite - SQLite support

Package Size

⚠️ Warning: This package includes all database providers, resulting in a larger download size (~87.5MB).

Recommendation

For production applications, we recommend installing only the specific provider package you need:

# For SQL Server only (~17MB)
dotnet add package ORMData.SqlServer

# For PostgreSQL only (~27MB)
dotnet add package ORMData.PostgreSql

# For MySQL only (~10MB)
dotnet add package ORMData.MySql

# For SQLite only (~5MB)
dotnet add package ORMData.Sqlite

This reduces package size by 80-94% and eliminates unnecessary dependencies.

Usage

dotnet add package ORMData.All
using ORMData;
using ORMData.SqlServer.Extensions;
using ORMData.PostgreSql.Extensions;
using ORMData.MySql.Extensions;
using ORMData.Sqlite.Extensions;

var builder = WebApplication.CreateBuilder(args);

// Register all providers
builder.Services.AddInfrastructureServices(builder.Configuration)
    .AddSqlServerProvider()
    .AddPostgreSqlProvider()
    .AddMySqlProvider()
    .AddSqliteProvider();

var app = builder.Build();
app.Run();
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
10.1.4 87 1/29/2026
10.1.3 91 1/6/2026
10.1.2 177 12/23/2025
10.1.1 173 12/23/2025
10.1.0 170 12/22/2025

v10.1.1
Arquitectura Modular de Proveedores NuGet

       - Refactorización total para desacoplamiento de proveedores de base de datos.
       - Core de ORMData ahora es ligero y libre de dependencias de drivers específicos.
       - Introducción de IProviderFactory y abstracciones para modularidad.
       - Nuevos paquetes específicos: ORMData.SqlServer, ORMData.PostgreSql, ORMData.MySql, ORMData.Sqlite.
       - Paquete meta ORMData.All para compatibilidad total con versiones anteriores.
       - Actualización a .NET 10.
       - Reducción masiva del tamaño de paquetes individuales.