Dapper.Mapper
1.13.0
See the version list below for details.
dotnet add package Dapper.Mapper --version 1.13.0
NuGet\Install-Package Dapper.Mapper -Version 1.13.0
<PackageReference Include="Dapper.Mapper" Version="1.13.0" />
<PackageVersion Include="Dapper.Mapper" Version="1.13.0" />
<PackageReference Include="Dapper.Mapper" />
paket add Dapper.Mapper --version 1.13.0
#r "nuget: Dapper.Mapper, 1.13.0"
#addin nuget:?package=Dapper.Mapper&version=1.13.0
#tool nuget:?package=Dapper.Mapper&version=1.13.0
Dapper.Mapper is an extension to Dapper multi mapping which figures out the relationships between the returned objects and automatically assigns them.
Instead of explicitly writing this:
var employee = connection.Query<Employee, Department, Employee>(sql, (employee, department) => { employee.Department = department; return employee;});
Dapper.Mapper allows you to write this:
var employee = connection.Query<Employee, Department>(sql);
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET Framework | net40 is compatible. net403 was computed. net45 is compatible. net451 was computed. net452 was computed. net46 was computed. net461 was computed. net462 was computed. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
-
- Dapper (>= 1.13.0)
NuGet packages (5)
Showing the top 5 NuGet packages that depend on Dapper.Mapper:
Package | Downloads |
---|---|
Nosabit.Adapters.Persistence.SqlServer.Abstractions
Nosabit.Adapters.Persistence.SqlServer.Abstractions es una biblioteca de abstracciones para acceso a datos SQL Server que define interfaces para interactuar con bases de datos mediante Dapper. Este paquete proporciona solo las definiciones de interfaces que pueden ser implementadas en paquetes concretos, facilitando la inyección de dependencias y las pruebas unitarias en aplicaciones .NET. |
|
Nosabit.Adapters.Persistence.SqlServer
Nosabit.Adapters.Persistence.SqlServer es una implementación completa del paquete de abstracciones para acceso a datos SQL Server utilizando Dapper. Proporciona una implementación eficiente y segura para ejecutar procedimientos almacenados, realizar consultas complejas, mapeo de múltiples entidades y soporte para operaciones paginadas. Incluye características avanzadas como protección de cadenas de conexión, manejo inteligente de errores y métodos de extensión para la inyección de dependencias. Optimiza el desarrollo de aplicaciones .NET con un acceso a datos robusto y tipado. |
|
Beezie.Persistence
Package Description |
|
VApp.Data.Dapper
Package Description |
|
DenisJakus.SqlDapperWrapperSP
Wrapper around SqlDapper when using stored procedures together with repository pattern. <div>Icons made by <a href="https://www.flaticon.com/authors/flat-icons" title="Flat Icons">Flat Icons</a> from <a href="https://www.flaticon.com/" title="Flaticon">www.flaticon.com</a></div> |
GitHub repositories (1)
Showing the top 1 popular GitHub repositories that depend on Dapper.Mapper:
Repository | Stars |
---|---|
androidseb25/iGotify-Notification-Assistent
Docker container for sending Gotify notifications to iOS devices (bridge to gotify websocket)
|
- Added support for async
- Added support for up to seven generic type parameters