SharpCoreDB.Data.Provider
1.8.0
dotnet add package SharpCoreDB.Data.Provider --version 1.8.0
NuGet\Install-Package SharpCoreDB.Data.Provider -Version 1.8.0
<PackageReference Include="SharpCoreDB.Data.Provider" Version="1.8.0" />
<PackageVersion Include="SharpCoreDB.Data.Provider" Version="1.8.0" />
<PackageReference Include="SharpCoreDB.Data.Provider" />
paket add SharpCoreDB.Data.Provider --version 1.8.0
#r "nuget: SharpCoreDB.Data.Provider, 1.8.0"
#:package SharpCoreDB.Data.Provider@1.8.0
#addin nuget:?package=SharpCoreDB.Data.Provider&version=1.8.0
#tool nuget:?package=SharpCoreDB.Data.Provider&version=1.8.0
SharpCoreDB.Data.Provider v1.8.0
ADO.NET Data Provider for SharpCoreDB
Complete ADO.NET provider enabling standard database connectivity patterns with SharpCoreDB's encryption and performance.
Patch updates in v1.8.0
- ✅ Aligned package metadata and version references to the synchronized 1.8.0 release line.
- ✅ Release automation now publishes all packable SharpCoreDB packages in CI/CD.
✨ What's New in v1.8.0
- ✅ Inherits metadata improvements from SharpCoreDB v1.8.0
- ✅ Enterprise connectivity features
- ✅ Full ADO.NET compatibility
- ✅ Zero breaking changes
🚀 Key Features
- ADO.NET Compatibility: DbConnection, DbCommand, DbDataReader implementations
- Standard Patterns: Connection pooling, parameterized queries, transactions
- Encryption: AES-256-GCM transparent encryption
- Performance: High-speed data access with caching
- Production Ready: Enterprise-grade reliability
💻 Quick Example
using System.Data;
using SharpCoreDB.Data.Provider;
using var connection = new SharpCoreDbConnection("mydb.scdb", "password");
connection.Open();
using var command = connection.CreateCommand();
command.CommandText = "SELECT * FROM users WHERE id = @id";
command.Parameters.Add("@id", 1);
using var reader = command.ExecuteReader();
while (reader.Read())
{
Console.WriteLine($"Name: {reader["name"]}");
}
📚 Documentation
📦 Installation
dotnet add package SharpCoreDB.Data.Provider --version 1.8.0
Requires: SharpCoreDB v1.8.0+
Version: 1.8.0 | Status: ✅ Production Ready
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net10.0 is compatible. net10.0-android was computed. net10.0-browser was computed. net10.0-ios was computed. net10.0-maccatalyst was computed. net10.0-macos was computed. net10.0-tvos was computed. net10.0-windows was computed. |
-
net10.0
- SharpCoreDB (>= 1.8.0)
- SharpCoreDB.Functional (>= 1.8.0)
NuGet packages (2)
Showing the top 2 NuGet packages that depend on SharpCoreDB.Data.Provider:
| Package | Downloads |
|---|---|
|
SharpCoreDB.Provider.YesSql
YesSql provider for SharpCoreDB encrypted database engine. Built for .NET 10 with C# 14. Supports Windows, Linux, macOS, Android, iOS, and IoT/embedded devices with platform-specific optimizations. |
|
|
SharpCoreDB.Provider.Sync
Dotmim.Sync provider for SharpCoreDB — enables bidirectional synchronization between SharpCoreDB and any Dotmim.Sync-supported database (PostgreSQL, SQL Server, SQLite, MySQL). Supports multi-tenant filtering for local-first AI agent architectures. Built for .NET 10 with C# 14. |
GitHub repositories
This package is not used by any popular GitHub repositories.
| Version | Downloads | Last Updated |
|---|---|---|
| 1.8.0 | 126 | 4/29/2026 |
| 1.7.2 | 137 | 4/28/2026 |
| 1.7.1 | 120 | 4/26/2026 |
| 1.7.0 | 149 | 4/19/2026 |
| 1.6.0 | 191 | 3/23/2026 |
| 1.5.0 | 148 | 3/14/2026 |
| 1.4.1 | 167 | 2/28/2026 |
| 1.3.5 | 129 | 2/21/2026 |
| 1.3.0 | 116 | 2/14/2026 |
| 1.1.1 | 117 | 2/8/2026 |
| 1.1.0 | 118 | 2/8/2026 |
| 1.0.6 | 121 | 2/1/2026 |
| 1.0.5 | 116 | 1/11/2026 |
| 1.0.2 | 117 | 1/3/2026 |
| 1.0.1 | 116 | 1/3/2026 |
v1.8.0: Synchronized release with the latest SharpCoreDB features, fixes, and documentation updates.