SharpCoreDB.EntityFrameworkCore
1.9.1
dotnet add package SharpCoreDB.EntityFrameworkCore --version 1.9.1
NuGet\Install-Package SharpCoreDB.EntityFrameworkCore -Version 1.9.1
<PackageReference Include="SharpCoreDB.EntityFrameworkCore" Version="1.9.1" />
<PackageVersion Include="SharpCoreDB.EntityFrameworkCore" Version="1.9.1" />
<PackageReference Include="SharpCoreDB.EntityFrameworkCore" />
paket add SharpCoreDB.EntityFrameworkCore --version 1.9.1
#r "nuget: SharpCoreDB.EntityFrameworkCore, 1.9.1"
#:package SharpCoreDB.EntityFrameworkCore@1.9.1
#addin nuget:?package=SharpCoreDB.EntityFrameworkCore&version=1.9.1
#tool nuget:?package=SharpCoreDB.EntityFrameworkCore&version=1.9.1
SharpCoreDB.EntityFrameworkCore v1.9.1
Entity Framework Core Provider for SharpCoreDB
Full EF Core integration with SharpCoreDB's encryption and performance for modern .NET applications.
Patch updates in v1.9.1
- ✅ Fixed critical Guid foreign key persistence bug when using
Include+ navigation filters (e.g.Where(x => x.Children.Any(...))). - Root cause was missing Guid normalization during INSERT parameter binding (now aligned with DateTime handling).
- The recommended pattern now works reliably with Guid primary keys and foreign keys.
Patch updates in v1.9.0
- ✅ Fixed EF Core materialization for aliased and quoted SELECT columns by normalizing DataReader column names and fallback value resolution.
- ✅ Added targeted regression tests for aliased and qualified column lookup behavior.
- ✅ 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
- ✅ Entity Framework Core integration
- ✅ Enterprise distributed features support
- ✅ Zero breaking changes
- ✅ Production ready
🚀 Key Features
- Full EF Core Support: LINQ queries, migrations, relationships
- Encryption: Transparent AES-256-GCM encryption
- Performance: High-speed data access with built-in caching
- MVCC: Multi-version concurrency control
- Transactions: ACID guarantees across operations
💻 Quick Example
using Microsoft.EntityFrameworkCore;
using SharpCoreDB.EntityFrameworkCore;
public class AppDbContext : DbContext
{
public DbSet<User> Users { get; set; }
public DbSet<Order> Orders { get; set; }
protected override void OnConfiguring(DbContextOptionsBuilder options)
{
options.UseSharpCoreDB("mydb.scdb", "password");
}
}
using var context = new AppDbContext();
var users = await context.Users.Where(u => u.IsActive).ToListAsync();
📚 Documentation
📦 Installation
dotnet add package SharpCoreDB.EntityFrameworkCore --version 1.9.1
Requires: SharpCoreDB v1.9.0+, EntityFrameworkCore v8.0+
Version: 1.9.1 | Status: ✅ Production Ready (Guid FK fix included)
| 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.EntityFrameworkCore (>= 10.0.8)
- Microsoft.EntityFrameworkCore.Relational (>= 10.0.8)
- SharpCoreDB (>= 1.9.1)
- SharpCoreDB.Graph (>= 1.9.1)
NuGet packages (1)
Showing the top 1 NuGet packages that depend on SharpCoreDB.EntityFrameworkCore:
| Package | Downloads |
|---|---|
|
SharpCoreDB.Functional.EntityFrameworkCore
Entity Framework Core adapter for SharpCoreDB.Functional with zero-dependency Option/Fin APIs and fluent functional composition for .NET 10 and C# 14. |
GitHub repositories
This package is not used by any popular GitHub repositories.
| Version | Downloads | Last Updated |
|---|---|---|
| 1.9.1 | 90 | 5/21/2026 |
| 1.9.0 | 104 | 5/20/2026 |
| 1.8.0 | 132 | 4/29/2026 |
| 1.7.2 | 134 | 4/28/2026 |
| 1.7.1 | 123 | 4/26/2026 |
| 1.7.0 | 138 | 4/19/2026 |
| 1.6.0 | 186 | 3/23/2026 |
| 1.5.0 | 125 | 3/14/2026 |
| 1.4.1 | 149 | 2/28/2026 |
| 1.3.5 | 125 | 2/21/2026 |
| 1.3.0 | 133 | 2/14/2026 |
| 1.1.1 | 135 | 2/8/2026 |
| 1.1.0 | 118 | 2/8/2026 |
| 1.0.6 | 190 | 2/1/2026 |
| 1.0.5 | 213 | 1/11/2026 |
| 1.0.1 | 127 | 1/3/2026 |
| 1.0.0 | 168 | 12/26/2025 |
v1.9.1: Synchronized release with the latest SharpCoreDB features, fixes, and documentation updates.