EntglDb.Core
0.8.6
See the version list below for details.
dotnet add package EntglDb.Core --version 0.8.6
NuGet\Install-Package EntglDb.Core -Version 0.8.6
<PackageReference Include="EntglDb.Core" Version="0.8.6" />
<PackageVersion Include="EntglDb.Core" Version="0.8.6" />
<PackageReference Include="EntglDb.Core" />
paket add EntglDb.Core --version 0.8.6
#r "nuget: EntglDb.Core, 0.8.6"
#:package EntglDb.Core@0.8.6
#addin nuget:?package=EntglDb.Core&version=0.8.6
#tool nuget:?package=EntglDb.Core&version=0.8.6
EntglDb.Core
Core abstractions and logic for EntglDb, a lightweight peer-to-peer mesh database for .NET.
What's Included
This package provides the core functionality for EntglDb:
- Type-Safe API: Generic
Collection<T>with LINQ support - Document Storage: Abstract interfaces for persistence
- Hybrid Logical Clocks (HLC): Distributed timestamp management
- Configuration System:
EntglDbOptionsfor flexible setup - Production Features:
- Document caching (LRU)
- Offline operation queue
- Health monitoring
- Retry policies
- Exception hierarchy
Installation
dotnet add package EntglDb.Core
dotnet add package EntglDb.Network
dotnet add package EntglDb.Persistence.Sqlite
Quick Start
using EntglDb.Core;
// Define your model
public class Product
{
[PrimaryKey(AutoGenerate = true)]
public string Id { get; set; } = "";
public string Name { get; set; }
public decimal Price { get; set; }
}
// Use type-safe collections
var products = database.Collection<Product>();
await products.Put(new Product { Name = "Laptop", Price = 999.99m });
// Query with LINQ
var results = await products.Find(p => p.Price > 500);
Documentation
Related Packages
- EntglDb.Network - P2P networking (UDP discovery, TCP sync, Gossip)
- EntglDb.Persistence.Sqlite - SQLite storage provider
License
MIT - see LICENSE
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net5.0 was computed. net5.0-windows was computed. net6.0 is compatible. 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 is compatible. 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. net9.0 was computed. net9.0-android was computed. net9.0-browser was computed. net9.0-ios was computed. net9.0-maccatalyst was computed. net9.0-macos was computed. net9.0-tvos was computed. net9.0-windows was computed. net10.0 was computed. 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. |
| .NET Core | netcoreapp2.0 was computed. 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 | 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. |
-
.NETStandard 2.0
- Microsoft.Extensions.DependencyInjection.Abstractions (>= 6.0.0)
- Microsoft.Extensions.Logging.Abstractions (>= 6.0.0)
- Microsoft.Extensions.Options (>= 6.0.0)
- System.ComponentModel.Annotations (>= 5.0.0)
- System.Text.Json (>= 6.0.10)
-
net6.0
- Microsoft.Extensions.DependencyInjection.Abstractions (>= 6.0.0)
- Microsoft.Extensions.Logging.Abstractions (>= 6.0.0)
- Microsoft.Extensions.Options (>= 6.0.0)
- System.Text.Json (>= 6.0.10)
-
net8.0
- Microsoft.Extensions.DependencyInjection.Abstractions (>= 6.0.0)
- Microsoft.Extensions.Logging.Abstractions (>= 6.0.0)
- Microsoft.Extensions.Options (>= 6.0.0)
- System.Text.Json (>= 8.0.5)
NuGet packages (4)
Showing the top 4 NuGet packages that depend on EntglDb.Core:
| Package | Downloads |
|---|---|
|
EntglDb.Persistence.EntityFramework
Entity Framework Core persistence provider for EntglDb. Generic implementation supporting any EF Core database provider (SQL Server, PostgreSQL, MySQL, SQLite, etc). |
|
|
EntglDb.Persistence
Persistence provider for EntglDb. |
|
|
EntglDb.Persistence.Sqlite
SQLite persistence provider for EntglDb. |
|
|
EntglDb.Sync
Synchronization algorithm (oplog, vector clocks, snapshots, anti-entropy) for EntglDb. |
GitHub repositories
This package is not used by any popular GitHub repositories.
| Version | Downloads | Last Updated |
|---|---|---|
| 2.3.7 | 187 | 4/24/2026 |
| 2.3.6 | 193 | 4/17/2026 |
| 2.3.4 | 197 | 4/13/2026 |
| 2.3.2 | 188 | 4/4/2026 |
| 2.3.1 | 181 | 4/2/2026 |
| 2.3.0 | 198 | 3/26/2026 |
| 2.2.0 | 193 | 3/25/2026 |
| 2.1.4 | 180 | 3/23/2026 |
| 2.1.3 | 204 | 3/20/2026 |
| 2.1.2 | 151 | 3/19/2026 |
| 2.1.0 | 184 | 3/19/2026 |
| 2.0.1 | 187 | 3/18/2026 |
| 2.0.0 | 189 | 3/17/2026 |
| 1.1.7 | 292 | 3/12/2026 |
| 1.1.6 | 281 | 3/11/2026 |
| 1.1.5 | 277 | 3/11/2026 |
| 1.1.4 | 277 | 3/10/2026 |
| 1.1.3 | 240 | 3/6/2026 |
| 1.1.2 | 247 | 3/6/2026 |
| 0.8.6 | 266 | 1/27/2026 |