Dashing 2.4.0-alpha
See the version list below for details.
dotnet add package Dashing --version 2.4.0-alpha
NuGet\Install-Package Dashing -Version 2.4.0-alpha
<PackageReference Include="Dashing" Version="2.4.0-alpha" />
<PackageVersion Include="Dashing" Version="2.4.0-alpha" />
<PackageReference Include="Dashing" />
paket add Dashing --version 2.4.0-alpha
#r "nuget: Dashing, 2.4.0-alpha"
#:package Dashing@2.4.0-alpha
#addin nuget:?package=Dashing&version=2.4.0-alpha&prerelease
#tool nuget:?package=Dashing&version=2.4.0-alpha&prerelease
Dashing is a simple to use mini ORM built on top of Dapper. It aims to provide fantastic productivity whilst not sacrificing (too much) performance.
| 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 | netcoreapp1.0 was computed. netcoreapp1.1 was computed. netcoreapp2.0 was computed. netcoreapp2.1 was computed. netcoreapp2.2 was computed. netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
| .NET Standard | netstandard1.5 is compatible. netstandard1.6 was computed. netstandard2.0 was computed. netstandard2.1 was computed. |
| .NET Framework | net46 is compatible. net461 was computed. net462 was computed. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
| MonoAndroid | monoandroid was computed. |
| MonoMac | monomac was computed. |
| MonoTouch | monotouch was computed. |
| Tizen | tizen30 was computed. tizen40 was computed. tizen60 was computed. |
| Xamarin.iOS | xamarinios was computed. |
| Xamarin.Mac | xamarinmac was computed. |
| Xamarin.TVOS | xamarintvos was computed. |
| Xamarin.WatchOS | xamarinwatchos was computed. |
-
.NETFramework 4.6
- Dapper (>= 1.50.2)
-
.NETStandard 1.5
- Dapper (>= 1.50.2)
- NETStandard.Library (>= 1.6.1)
NuGet packages (1)
Showing the top 1 NuGet packages that depend on Dashing:
| Package | Downloads |
|---|---|
|
Dashing.Testing
Dashing is a simple to use mini ORM built on top of Dapper. It aims to provide fantastic productivity while not sacrificing (too much) performance. |
GitHub repositories (1)
Showing the top 1 popular GitHub repositories that depend on Dashing:
| Repository | Stars |
|---|---|
|
DapperLib/Dapper
Dapper - a simple object mapper for .Net
|
| Version | Downloads | Last Updated |
|---|---|---|
| 3.1.0-alpha | 96 | 1/19/2026 |
| 3.0.1-alpha | 455 | 12/9/2025 |
| 3.0.0 | 493 | 12/9/2025 |
| 2.10.1 | 7,298 | 1/12/2024 |
| 2.10.0 | 3,488 | 7/10/2023 |
| 2.9.3 | 450 | 4/20/2023 |
| 2.9.2 | 398 | 4/20/2023 |
| 2.9.1 | 401 | 4/20/2023 |
| 2.9.0 | 416 | 4/20/2023 |
| 2.8.4 | 455 | 3/23/2023 |
| 2.8.3 | 525 | 1/19/2023 |
| 2.8.2 | 528 | 1/11/2023 |
| 2.8.1 | 545 | 12/19/2022 |
| 2.8.0 | 529 | 12/14/2022 |
| 2.8.0-rc1 | 372 | 12/5/2022 |
| 2.7.1 | 558 | 11/23/2022 |
| 2.7.0 | 528 | 11/16/2022 |
| 2.6.1 | 1,108 | 3/22/2022 |
| 2.6.0 | 958 | 10/7/2021 |
| 2.4.0-alpha | 956 | 9/18/2019 |
2.4.0 comes with:
- .Select support on queries so that you can make projections and specify the selected columns
e.g. .Query<Post>().Select(p => new { p.PostId })
- Cross table updates/deletes e.g. session.Delete<Post>(p => p.Blog.Owner.UserId == userId)