FluidDbClient 1.0.2
See the version list below for details.
dotnet add package FluidDbClient --version 1.0.2
NuGet\Install-Package FluidDbClient -Version 1.0.2
<PackageReference Include="FluidDbClient" Version="1.0.2" />
paket add FluidDbClient --version 1.0.2
#r "nuget: FluidDbClient, 1.0.2"
// Install FluidDbClient as a Cake Addin #addin nuget:?package=FluidDbClient&version=1.0.2 // Install FluidDbClient as a Cake Tool #tool nuget:?package=FluidDbClient&version=1.0.2
When you absolutely need to work with ADO.NET but want to ditch 95% of the boilerplate code. Perfect fit if you need to run explicit SQL and/or map raw data to complex objects that you won't trust to your ORM. Intuitively parameterize queries and commands, stream records, process multiple result sets with ease, batch operations into a single transaction, build scripts with dynamically-generated parameters, and if you wish, do things asynchronously. It's fast and super lightweight.
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 | 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.2 is compatible. netstandard1.3 was computed. netstandard1.4 was computed. netstandard1.5 was computed. netstandard1.6 was computed. netstandard2.0 was computed. netstandard2.1 was computed. |
.NET Framework | net451 was computed. net452 is compatible. 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. |
MonoAndroid | monoandroid was computed. |
MonoMac | monomac was computed. |
MonoTouch | monotouch was computed. |
Tizen | tizen30 was computed. tizen40 was computed. tizen60 was computed. |
Universal Windows Platform | uap was computed. uap10.0 was computed. |
Windows Phone | wpa81 was computed. |
Windows Store | netcore451 was computed. |
Xamarin.iOS | xamarinios was computed. |
Xamarin.Mac | xamarinmac was computed. |
Xamarin.TVOS | xamarintvos was computed. |
Xamarin.WatchOS | xamarinwatchos was computed. |
-
.NETFramework 4.5.2
- System.Data.Common (>= 4.1.0)
-
.NETStandard 1.2
- System.Collections (>= 4.0.11)
- System.Data.Common (>= 4.1.0)
- System.Linq (>= 4.1.0)
- System.Reflection (>= 4.1.0)
- System.Reflection.Extensions (>= 4.0.1)
- System.Runtime.Extensions (>= 4.1.0)
- System.Threading (>= 4.0.11)
NuGet packages (2)
Showing the top 2 NuGet packages that depend on FluidDbClient:
Package | Downloads |
---|---|
FluidDbClient.Sql
SQL Server provider for FluidDbClient. This library also makes working with Table Valued Parameters a snap. |
|
FluidDbClient.Oracle
Basic Oracle provider for FluidDbClient. |
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
1.1.9 | 5,184 | 6/18/2019 |
1.1.8 | 1,840 | 2/12/2019 |
1.1.7 | 2,929 | 1/9/2019 |
1.1.6 | 1,863 | 1/8/2019 |
1.1.5 | 1,809 | 1/7/2019 |
1.1.4 | 1,817 | 1/4/2019 |
1.1.3 | 1,862 | 1/3/2019 |
1.1.2 | 2,282 | 11/14/2017 |
1.1.1 | 2,113 | 11/13/2017 |
1.1.0 | 2,384 | 7/27/2017 |
1.0.9 | 2,293 | 7/27/2017 |
1.0.8 | 2,288 | 5/16/2017 |
1.0.7 | 2,190 | 5/15/2017 |
1.0.6 | 2,207 | 5/11/2017 |
1.0.4 | 2,294 | 3/31/2017 |
1.0.2 | 2,329 | 10/3/2016 |
1.0.1 | 2,247 | 9/29/2016 |
1.0.0 | 2,631 | 9/29/2016 |
Drastically reduced the dependencies required in 1.0.1. Now targets just net452 and netstandard1.2. Moved methods from IManagedDbQuery to extension methods to keep this interface clean. Dropped native dynamic functionality as this just dirtied up the API. Callers can easily map records to dynamic objects as needed. Added extensions to map records to Dictionary<string, object>.