Apps72.Dev.Data.Core 2.8.0-beta

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.

This is a prerelease version of Apps72.Dev.Data.Core.
There is a newer version of this package available.
See the version list below for details.
dotnet add package Apps72.Dev.Data.Core --version 2.8.0-beta
NuGet\Install-Package Apps72.Dev.Data.Core -Version 2.8.0-beta
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="2.8.0-beta" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Apps72.Dev.Data.Core --version 2.8.0-beta
#r "nuget: Apps72.Dev.Data.Core, 2.8.0-beta"
#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=2.8.0-beta&prerelease

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

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.AppendLine("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>();
}

Many preconfigured packages are available for SQL Server, Oracle, SQLite or a generic .NET Core library: NuGet Packages.

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.

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 5,047 3/18/2020
4.1.0 653 3/5/2020
4.0.2 1,105 1/15/2020
4.0.1 632 1/13/2020
4.0.0 631 12/29/2019
3.0.3 5,080 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,137 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,258 8/27/2017