EssentialLayers.Dapper
1.3.1
See the version list below for details.
dotnet add package EssentialLayers.Dapper --version 1.3.1
NuGet\Install-Package EssentialLayers.Dapper -Version 1.3.1
<PackageReference Include="EssentialLayers.Dapper" Version="1.3.1" />
<PackageVersion Include="EssentialLayers.Dapper" Version="1.3.1" />
<PackageReference Include="EssentialLayers.Dapper" />
paket add EssentialLayers.Dapper --version 1.3.1
#r "nuget: EssentialLayers.Dapper, 1.3.1"
#:package EssentialLayers.Dapper@1.3.1
#addin nuget:?package=EssentialLayers.Dapper&version=1.3.1
#tool nuget:?package=EssentialLayers.Dapper&version=1.3.1
Essential Layers
EssentialLayers.Dapper
Is a complement to the package EssentialLayers to provide an extra layer with the ORM dapper, where the main purpose will be, write the business logic in the "stored procedures" using templates that receiving input parameters and return a result set, Currently is just compatible with SQL Server.
Configure
Add the dependencies in your Program.cs file
builder.Services.Configure<ConnectionOption>(
options =>
{
options.ConnectionString = builder.Configuration.GetConnectionString("Local")!;
}
);
builder.Services.UseDapper();
Release Notes
- feat: Update dependencies to the latest stable version
07/05/2026 - fix: Error on use ExecuteAsync → Response from INormalProcedure with Enum values
07/05/2026 - fix: Handling of "Sequence contains no elements" exception because it is not a error
07/05/2026 - The IConnectionString service was removed to allowing the developer configure options, before to call UseDapper function
28/01/2026 - Segregation of dependecy IProcedureService in IComplexProcedure, INormalProcedure and IMultipleProcedure
28/01/2026 - Refactor Dapper helpers for DI and connection validation
19/01/2026 - Health check implementation and updating of dependencies to the last version
21/10/2025 - Added SetConnection to set the runtime value
24/01/2025
Created by Mario Soto Moreno
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net5.0 was computed. net5.0-windows was computed. net6.0 was computed. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. 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. |
| .NET Core | netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
| .NET Standard | netstandard2.1 is compatible. |
| MonoAndroid | monoandroid was computed. |
| MonoMac | monomac was computed. |
| MonoTouch | monotouch was computed. |
| Tizen | tizen60 was computed. |
| Xamarin.iOS | xamarinios was computed. |
| Xamarin.Mac | xamarinmac was computed. |
| Xamarin.TVOS | xamarintvos was computed. |
| Xamarin.WatchOS | xamarinwatchos was computed. |
-
.NETStandard 2.1
- Dapper (>= 2.1.72)
- EssentialLayers (>= 1.7.2)
- Microsoft.Data.SqlClient (>= 7.0.1)
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.6.0 | 36 | 5/7/2026 |
| 1.5.1 | 146 | 3/18/2026 |
| 1.5.0 | 102 | 3/18/2026 |
| 1.4.2 | 134 | 3/10/2026 |
| 1.4.1 | 107 | 3/5/2026 |
| 1.4.0 | 97 | 3/4/2026 |
| 1.3.1 | 34 | 5/7/2026 |
| 1.3.0 | 176 | 1/29/2026 |
| 1.2.0 | 119 | 1/19/2026 |
| 1.1.7 | 228 | 10/21/2025 |
| 1.1.6 | 197 | 1/24/2025 |
| 1.1.5 | 184 | 11/4/2024 |
| 1.1.4 | 177 | 10/29/2024 |
| 1.1.3 | 167 | 10/29/2024 |
| 1.1.2 | 190 | 10/29/2024 |
| 1.1.1 | 183 | 10/29/2024 |
| 1.1.0 | 193 | 10/27/2024 |
| 1.0.0 | 197 | 9/29/2024 |
- feat: Update dependencies to the latest stable version `07/05/2026`
- fix: Error on use ExecuteAsync -> Response from INormalProcedure with Enum values `07/05/2026`
- fix: Handling of "Sequence contains no elements" exception because it is not a error `07/05/2026`