Apps72.Dev.Data 4.1.0

There is a newer version of this package available.
See the version list below for details.
dotnet add package Apps72.Dev.Data --version 4.1.0
NuGet\Install-Package Apps72.Dev.Data -Version 4.1.0
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Apps72.Dev.Data" Version="4.1.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Apps72.Dev.Data --version 4.1.0
#r "nuget: Apps72.Dev.Data, 4.1.0"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install Apps72.Dev.Data as a Cake Addin
#addin nuget:?package=Apps72.Dev.Data&version=4.1.0

// Install Apps72.Dev.Data as a Cake Tool
#tool nuget:?package=Apps72.Dev.Data&version=4.1.0

DatabaseCommand - Simple Object Mapping


Go to https://apps72.com to learn how to use DatabaseCommand.


Last build status: Build status

Introduction

This C# library simplify SQL Queries to external databases, using the standard class DbConnection and DotNetCore. Many implementations are compiled for SQL Server, Oracle Server or SQLite.

First, create a SqlConnection or an other DbConnection.

using (var cmd = new DatabaseCommand(mySqlConnection))
{
    cmd.CommandText = "SELECT ID, Name FROM EMployee";
    var all = cmd.ExecuteTable<Employee>();     // List of all employees
    var smith = cmd.ExecuteRow<Employee>();     // First employee
    var id = cmd.ExecuteScalar<int>();          // ID of first employee
    
    var emps = cmd.Query(" SELECT * FROM Employee WHERE ID > @ID ")
                  .AddParameter("@ID", 10)
                  .ExecuteTable<Employee>();
}

Requirements: Microsoft Framework 4.0 (Client Profile) for desktop applications, or SQL Server 2008 R2 for SQL CLR Stored procedures, or .NET Standard 2.0 for .NET Core library.

Basic Samples (video)

Samples

Product 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 is compatible.  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 net40 is compatible.  net403 was computed.  net45 was computed.  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. 
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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

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
6.0.1 413 1/22/2024
5.4.3 6,308 8/3/2021
5.4.2 887 7/19/2021
5.4.1 890 6/9/2021
5.4.0 877 6/8/2021
5.3.1 937 4/20/2021
5.3.0 888 4/12/2021
5.2.0 862 4/12/2021
5.1.0 856 4/12/2021
5.0.1 985 1/25/2021
5.0.0 1,059 12/12/2020
4.2.4 1,192 10/7/2020
4.2.3 1,897 10/1/2020
4.2.2 1,006 9/23/2020
4.2.1 1,083 9/21/2020
4.2.0 1,017 9/18/2020
4.1.2 1,061 9/16/2020
4.1.1 5,000 3/18/2020
4.1.0 1,106 3/5/2020
4.0.2 1,164 1/15/2020
4.0.1 1,069 1/13/2020
4.0.0 1,075 12/29/2019
3.0.3 1,259 4/21/2019
3.0.2-rc2 976 3/28/2019
3.0.1-rc1 973 3/12/2019
3.0.1-beta 990 3/5/2019
2.7.5 1,512 8/9/2018
2.7.3 1,410 7/20/2018
2.6.0 1,589 6/14/2018
2.5.0 1,643 2/11/2018
2.4.0 1,572 8/27/2017
2.3.2 1,548 7/24/2017
2.3.1 1,519 7/4/2017
2.3.0 1,549 6/23/2017
2.3.0-beta 1,339 6/23/2017
2.1.0 1,642 12/17/2016
2.0.0 1,584 10/10/2016
1.5.2 1,756 3/30/2016
1.5.1 1,602 3/14/2016
1.5.0 1,632 3/14/2016
1.4.0 1,664 1/30/2016
1.3.0 1,967 1/4/2016
1.2.0 2,200 12/13/2015