Apps72.Dev.Data.Core 4.1.1

Suggested Alternatives

Apps72.Dev.Data

Additional Details

Since the version 3.0, the project was migrated to .NET Standard 2.0.
So, the packages Apps72.Dev.Data.Core and Apps72.Dev.Data are exactly same libraries.

dotnet add package Apps72.Dev.Data.Core --version 4.1.1
NuGet\Install-Package Apps72.Dev.Data.Core -Version 4.1.1
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.Core" Version="4.1.1" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Apps72.Dev.Data.Core --version 4.1.1
#r "nuget: Apps72.Dev.Data.Core, 4.1.1"
#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.Core as a Cake Addin
#addin nuget:?package=Apps72.Dev.Data.Core&version=4.1.1

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

DatabaseCommand - Simple Object Mapping


Use the package https://www.nuget.org/packages/Apps72.Dev.Data


Last build status: Build status

Introduction

This C# library simplify SQL Queries to external databases, using the standard class DbConnection and DotNetCore. You can use this library to retrieve data from SQL Server, Oracle Server, 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
4.1.1 4,979 3/18/2020
4.1.0 651 3/5/2020
4.0.2 1,103 1/15/2020
4.0.1 629 1/13/2020
4.0.0 629 12/29/2019
3.0.3 5,077 4/21/2019
3.0.2-rc2 581 3/28/2019
3.0.1-rc1 586 3/12/2019
3.0.1-beta 949 3/5/2019
2.8.0-beta 725 12/2/2018
2.7.5 1,136 8/9/2018
2.7.4 1,088 7/20/2018
2.7.3 1,028 7/20/2018
2.7.2 1,133 7/16/2018
2.7.1 1,158 7/5/2018
2.7.0 1,141 7/5/2018
2.6.0 1,114 6/14/2018
2.5.0 1,222 2/11/2018
2.4.0 1,257 8/27/2017