SharpCoreDB.Data.Provider
1.9.4
dotnet add package SharpCoreDB.Data.Provider --version 1.9.4
NuGet\Install-Package SharpCoreDB.Data.Provider -Version 1.9.4
<PackageReference Include="SharpCoreDB.Data.Provider" Version="1.9.4" />
<PackageVersion Include="SharpCoreDB.Data.Provider" Version="1.9.4" />
<PackageReference Include="SharpCoreDB.Data.Provider" />
paket add SharpCoreDB.Data.Provider --version 1.9.4
#r "nuget: SharpCoreDB.Data.Provider, 1.9.4"
#:package SharpCoreDB.Data.Provider@1.9.4
#addin nuget:?package=SharpCoreDB.Data.Provider&version=1.9.4
#tool nuget:?package=SharpCoreDB.Data.Provider&version=1.9.4
SharpCoreDB.Data.Provider v1.9.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.9.0
- ✅ Aligned package metadata and version references to the synchronized 1.9.0 release line.
- ✅ Release automation now publishes all packable SharpCoreDB packages in CI/CD.
✨ What's New in v1.9.0
- ✅ Inherits metadata improvements from SharpCoreDB v1.9.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.9.4
Requires: SharpCoreDB v1.9.4+
Version: 1.9.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
- Microsoft.Extensions.DependencyInjection (>= 10.0.11)
- Microsoft.Extensions.DependencyInjection.Abstractions (>= 10.0.11)
- Microsoft.Extensions.Logging (>= 10.0.11)
- Microsoft.Extensions.Logging.Abstractions (>= 10.0.11)
- Microsoft.Extensions.ObjectPool (>= 10.0.11)
- SharpCoreDB (>= 1.9.4)
- SharpCoreDB.Functional (>= 1.9.4)
NuGet packages (3)
Showing the top 3 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. |
|
|
SharpCoreDB.Functional.Linq2DB
Production-ready linq2db adapter for SharpCoreDB.Functional. Zero-dependency Option/Fin/Seq APIs, compile-time LINQ safety, BulkCopy batching, full type mappings (ULID/GUID), and low-overhead queries. Perfect for AI/agentic and GraphRAG workloads on .NET 10 / C# 14. |
GitHub repositories
This package is not used by any popular GitHub repositories.
| Version | Downloads | Last Updated |
|---|---|---|
| 1.9.4 | 38 | 8/22/2026 |
| 1.9.3 | 191 | 7/28/2026 |
| 1.9.2 | 194 | 6/7/2026 |
| 1.9.1 | 143 | 5/21/2026 |
| 1.9.0 | 130 | 5/20/2026 |
| 1.8.0 | 167 | 4/29/2026 |
| 1.7.2 | 156 | 4/28/2026 |
| 1.7.1 | 141 | 4/26/2026 |
| 1.7.0 | 170 | 4/19/2026 |
| 1.6.0 | 213 | 3/23/2026 |
| 1.5.0 | 177 | 3/14/2026 |
| 1.4.1 | 186 | 2/28/2026 |
| 1.3.5 | 153 | 2/21/2026 |
| 1.3.0 | 135 | 2/14/2026 |
| 1.1.1 | 140 | 2/8/2026 |
| 1.1.0 | 138 | 2/8/2026 |
| 1.0.6 | 144 | 2/1/2026 |
| 1.0.5 | 135 | 1/11/2026 |
| 1.0.2 | 138 | 1/3/2026 |
| 1.0.1 | 136 | 1/3/2026 |
v1.9.4: Known-issue fixes (opt-in at-rest per-record encryption EnableAtRestRecordEncryption, opt-in SQLite integer affinity UseSqliteIntegerAffinity, reopen-insert AOORE fix, functional single-file point operations, ExecuteQuery batch flush, SQL validator @-prefix normalization), single-file to directory SQL parity (LIKE/IS NULL/NOT NULL/BETWEEN), and version synchronization to 1.9.4 across all packages, documentation and tests.