EntglDb.Core
0.7.2
.NET 6.0
This package targets .NET 6.0. The package is compatible with this framework or higher.
.NET Standard 2.0
This package targets .NET Standard 2.0. The package is compatible with this framework or higher.
There is a newer version of this package available.
See the version list below for details.
See the version list below for details.
dotnet add package EntglDb.Core --version 0.7.2
NuGet\Install-Package EntglDb.Core -Version 0.7.2
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="EntglDb.Core" Version="0.7.2" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="EntglDb.Core" Version="0.7.2" />
<PackageReference Include="EntglDb.Core" />
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 EntglDb.Core --version 0.7.2
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: EntglDb.Core, 0.7.2"
#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 EntglDb.Core@0.7.2
#: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=EntglDb.Core&version=0.7.2
#tool nuget:?package=EntglDb.Core&version=0.7.2
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
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. |
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
-
.NETStandard 2.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.Logging.Abstractions (>= 6.0.0)
- Microsoft.Extensions.Options (>= 6.0.0)
- System.Text.Json (>= 6.0.10)
-
net8.0
- Microsoft.Extensions.Logging.Abstractions (>= 6.0.0)
- Microsoft.Extensions.Options (>= 6.0.0)
- System.Text.Json (>= 8.0.5)
NuGet packages (3)
Showing the top 3 NuGet packages that depend on EntglDb.Core:
| Package | Downloads |
|---|---|
|
EntglDb.Network
Networking layer (TCP/UDP/Gossip) for EntglDb. |
|
|
EntglDb.Persistence.Sqlite
SQLite persistence provider for EntglDb. |
|
|
EntglDb.Persistence.EntityFramework
Entity Framework Core persistence provider for EntglDb. Generic implementation supporting any EF Core database provider (SQL Server, PostgreSQL, MySQL, SQLite, etc). |
GitHub repositories
This package is not used by any popular GitHub repositories.
| Version | Downloads | Last Updated |
|---|---|---|
| 0.9.1 | 253 | 1/28/2026 |
| 0.8.6 | 243 | 1/27/2026 |
| 0.8.5 | 247 | 1/26/2026 |
| 0.8.4 | 249 | 1/22/2026 |
| 0.8.3 | 238 | 1/22/2026 |
| 0.8.2 | 240 | 1/21/2026 |
| 0.8.1 | 239 | 1/21/2026 |
| 0.8.0 | 231 | 1/21/2026 |
| 0.7.7 | 147 | 1/21/2026 |
| 0.7.6 | 154 | 1/20/2026 |
| 0.7.5 | 156 | 1/20/2026 |
| 0.7.4 | 157 | 1/20/2026 |
| 0.7.3 | 144 | 1/19/2026 |
| 0.7.2 | 156 | 1/19/2026 |
| 0.7.1 | 155 | 1/19/2026 |
| 0.7.0 | 159 | 1/19/2026 |
| 0.6.1 | 158 | 1/18/2026 |
| 0.6.0 | 165 | 1/17/2026 |
| 0.5.0 | 158 | 1/16/2026 |
| 0.4.0 | 158 | 1/15/2026 |
Loading failed