SqlProvider.Data
1.1.0
dotnet add package SqlProvider.Data --version 1.1.0
NuGet\Install-Package SqlProvider.Data -Version 1.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="SqlProvider.Data" Version="1.1.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="SqlProvider.Data" Version="1.1.0" />
<PackageReference Include="SqlProvider.Data" />
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add SqlProvider.Data --version 1.1.0
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: SqlProvider.Data, 1.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.
#:package SqlProvider.Data@1.1.0
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=SqlProvider.Data&version=1.1.0
#tool nuget:?package=SqlProvider.Data&version=1.1.0
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
SqlProvider.Data
A lightweight and efficient SQL data provider for .NET Framework 4.8 applications.
Key Features
- Simple SQL Execution : Execute queries and retrieve data with a single line of code using MakeRequest .
- Session Management : Built-in static User class for tracking user roles and full names across the application.
- Data Mapping : Automatic mapping of SQL results to standard .NET collections.
- WinForms Support : Optimized for Windows Forms applications with integrated data binding support.
Quick Start
// Execute a query and get data from a specific
column
List<string> results = SqlProvider.SqlDB.
MakeRequest("SELECT * FROM Products", 1);
Installation
Install the package via NuGet Package Manager: Install-Package SqlProvider.Data
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET Framework | net48 is compatible. net481 was computed. |
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
-
.NETFramework 4.8
- System.Data.SqlClient (>= 4.8.6)
- System.Resources.Extensions (>= 8.0.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 |
|---|---|---|
| 1.1.0 | 97 | 3/4/2026 |
Updated version with public classes and fixed documentation.