Debonair 2.0.0
See the version list below for details.
dotnet add package Debonair --version 2.0.0
NuGet\Install-Package Debonair -Version 2.0.0
<PackageReference Include="Debonair" Version="2.0.0" />
paket add Debonair --version 2.0.0
#r "nuget: Debonair, 2.0.0"
// Install Debonair as a Cake Addin #addin nuget:?package=Debonair&version=2.0.0 // Install Debonair as a Cake Tool #tool nuget:?package=Debonair&version=2.0.0
Debonair is a very light weight ORM, that does not contain object tracking, it does not support child objects. Its back to basics, Keep It Simple Stupid.
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. |
.NET Core | netcoreapp2.0 was computed. netcoreapp2.1 was computed. netcoreapp2.2 was computed. netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
.NET Standard | netstandard2.0 is compatible. netstandard2.1 was computed. |
.NET Framework | 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 | 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. |
-
.NETStandard 2.0
- microsoft.csharp (>= 4.4.0)
- Microsoft.Extensions.Caching.Memory (>= 2.0.0)
- Microsoft.NETCore.Platforms (>= 2.0.0)
- System.Data.SqlClient (>= 4.4.0)
- System.Dynamic.Runtime (>= 4.3.0)
- system.linq (>= 4.3.0)
- system.reflection (>= 4.3.0)
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.0.1 | 1,223 | 9/6/2017 |
2.0.0 | 1,161 | 9/6/2017 |
1.1.0.44 | 973 | 9/4/2017 |
1.1.0.43 | 959 | 9/3/2017 |
1.1.0.42 | 913 | 9/3/2017 |
1.1.0.41 | 931 | 9/3/2017 |
1.1.0.40 | 930 | 9/3/2017 |
1.1.0.39 | 948 | 9/3/2017 |
1.1.0.38 | 1,039 | 12/3/2016 |
1.1.0.37 | 979 | 12/3/2016 |
1.1.0.36 | 1,001 | 12/3/2016 |
1.1.0.35 | 1,074 | 12/3/2016 |
1.1.0.34 | 1,050 | 12/3/2016 |
1.1.0.33 | 1,018 | 12/2/2016 |
1.1.0.32 | 995 | 12/2/2016 |
1.0.1 | 1,116 | 7/18/2016 |
1.0.0 | 1,322 | 6/29/2016 |
We have ported Debonair over to .netStandard 2.0, this has meant a few changes to the architecture.
Changes:
- Debonair project moved to .Net Standard 2.0
- Debonair.Tests project moved to .Net Core 2.0
- Unit test project moved to XUnit (N.B. The XUnit project is a .netCore project)
- Caching rewritten and now uses Microsoft.Extensions.Caching.Memory
Bugs Fixed:
- Insert/Update Column names not being populated when you provide an EntityMapping.
- Improved performance, although the mapping to your POCOs still needs some work.
- Errors fixed in README.md
Outstanding Issues/Problems:
- Mapping to POCOs is slow, when a lot of data is present, see Performance Stats for more information
- Reliance on SqlConnection from System.Data.SqlClient
- Lacking quality Unit tests