Ax.Fw.Storage 14.5.242

There is a newer version of this package available.
See the version list below for details.
dotnet add package Ax.Fw.Storage --version 14.5.242
                    
NuGet\Install-Package Ax.Fw.Storage -Version 14.5.242
                    
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="Ax.Fw.Storage" Version="14.5.242" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Ax.Fw.Storage" Version="14.5.242" />
                    
Directory.Packages.props
<PackageReference Include="Ax.Fw.Storage" />
                    
Project file
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 Ax.Fw.Storage --version 14.5.242
                    
#r "nuget: Ax.Fw.Storage, 14.5.242"
                    
#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 Ax.Fw.Storage@14.5.242
                    
#: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=Ax.Fw.Storage&version=14.5.242
                    
Install as a Cake Addin
#tool nuget:?package=Ax.Fw.Storage&version=14.5.242
                    
Install as a Cake Tool

Ax.Fw.Storage

Simple document database; based on SQLite

Why?

I just wanted to create an instance of class and be able to write to database, read from database, enumerate elements in database by key without thinking about "this database's BSON don't support ImmutableDictionary, meh", "that database doesn't support numeric keys, meh", "ah, I can't search for values of integer column using unsigned integer variable, meh" and so on. Why not "key-value" storage? I also wanted to filter my objects by last changed time. That's it. This document storage engine is not as fast as more "strongly-typed" databases (I think it's 1.1 - 1.5x slower in some scenarios), but it is reliable as any SQLite database.

Usage example:

// we need CancellationToken
var ct = default(CancellationToken);

// path to database file
var dbFile = "/home/user/data.db"

try
{
    // create database or open existing
    using var storage = new SqliteDocumentStorage(dbFile);

    // create document; pair 'namespace - key' is unique; any json serializable data can be stored
    var doc = await storage.WriteDocumentAsync(_namespace: "default", _key: "test-key", _data: "test-data-0", ct);

    // retrieve data
    var readDoc = await storage.ReadDocumentAsync(_namespace: "default", _key: "test-key", ct);

    Assert.Equal("test-data-0", readDoc?.Data.ToObject<string>());

    // there are also 'simple' documents; 
    // namespace of simple documents is automatically determined by data type or by `SimpleDocumentAttribute`
    var simpleDoc = await storage.WriteSimpleDocumentAsync(_entryId: 123, _data: "test_data", ct);

    var readSimpleDoc = await storage.ReadSimpleDocumentAsync<string>(_entryId: 123, ct);

    Assert.Equal("test_data", readSimpleDoc?.Data);

    // you also can attach in-memory cache to document storage
    // cache makes read operations significantly faster
    using var cachedStorage = storage.WithCache(_maxValuesCached: 1000, _cacheTtl: TimeSpan.FromSeconds(60));

    // you also can attach retention rules to document storage
    // documents older than certain age will be automatically deleted
    using var storageWithRules = storage
      .WithRetentionRules(TimeSpan.FromHours(1), TimeSpan.FromHours(1), TimeSpan.FromMinutes(10));
}
finally
{
    new FileInfo(dbFile).TryDelete();
}
Product Compatible and additional computed target framework versions.
.NET 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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
14.5.257 226 8/6/2025
14.5.256 152 6/19/2025
14.5.255 138 6/19/2025
14.5.254 290 6/12/2025
14.5.252 155 5/11/2025
14.5.251 164 5/8/2025
14.5.250 158 5/8/2025
14.5.249 155 5/8/2025
14.5.248 159 5/8/2025
14.5.247 203 2/8/2025
14.5.246 120 2/8/2025
14.5.245 126 2/7/2025
14.5.244 116 1/29/2025
14.5.242 113 1/29/2025
14.5.241 114 1/29/2025
14.4.240 208 11/2/2024
14.4.239 205 10/18/2024
14.4.237 138 9/19/2024
14.4.236 186 8/11/2024
14.3.235 154 8/10/2024
14.3.234 116 8/5/2024
14.3.233 125 7/29/2024
14.3.232 134 7/23/2024
14.3.231 132 7/22/2024
14.3.230 150 7/17/2024
14.3.229 125 7/17/2024
14.3.228 134 7/11/2024
14.3.227 139 7/10/2024
14.3.226 166 7/3/2024
14.3.225 154 6/14/2024
14.3.224 125 6/7/2024
14.3.223 143 6/6/2024
14.3.222 149 5/17/2024
14.3.221 178 4/12/2024
14.2.219 146 4/11/2024
14.2.218 141 4/10/2024
14.2.217 238 3/29/2024
14.2.216 156 3/27/2024
14.2.215 154 3/22/2024
14.1.212 157 3/11/2024
14.1.211 146 3/11/2024
14.1.210 145 3/6/2024
14.1.208 157 3/6/2024
14.1.206 160 3/2/2024
14.1.205 159 3/1/2024
14.0.204 165 2/19/2024
14.0.203 147 2/16/2024
14.0.201 161 2/15/2024
13.0.200 173 2/10/2024
13.0.199 154 2/10/2024
13.0.198 152 2/10/2024
13.0.197 332 12/10/2023
13.0.196 160 12/10/2023
13.0.195 158 12/9/2023
13.0.194 133 12/6/2023
13.0.192 145 12/5/2023
13.0.191 189 11/26/2023
13.0.189 151 11/24/2023
13.0.186 147 11/23/2023
13.0.185 154 11/22/2023
13.0.182 154 11/18/2023
13.0.181 185 11/14/2023
13.0.180 454 11/12/2023
13.0.179 145 11/10/2023
12.1.178 177 10/25/2023
12.1.177 169 10/24/2023
12.1.176 166 10/21/2023
12.1.175 171 10/21/2023
12.1.173 166 10/16/2023
12.1.172 191 10/15/2023
12.1.171 167 10/15/2023
12.1.170 162 10/15/2023
12.1.168 183 10/15/2023
12.1.167 142 10/14/2023
12.1.166 214 9/7/2023
12.1.165 243 8/28/2023
12.1.164 283 8/15/2023
12.1.163 237 8/14/2023
12.1.162 211 8/14/2023
12.1.161 252 6/20/2023
12.1.160 254 6/10/2023
12.1.158 227 5/31/2023
12.1.157 223 5/22/2023
12.1.7 220 5/21/2023
12.1.0 215 5/19/2023
12.0.21 227 5/18/2023
12.0.20 206 5/18/2023
12.0.19 228 5/10/2023
12.0.18 207 5/4/2023
12.0.17 234 5/3/2023
12.0.16 252 4/30/2023
12.0.15 242 4/30/2023
12.0.13 249 4/27/2023
12.0.12 256 4/27/2023
12.0.10 315 4/15/2023
12.0.9 305 4/6/2023
12.0.8 304 3/27/2023
12.0.7 297 3/27/2023
12.0.3 293 3/22/2023
12.0.2 294 3/22/2023
12.0.1 326 3/1/2023
12.0.0 364 2/11/2023
11.1.10 347 2/11/2023
11.1.9 350 2/10/2023
11.1.8 350 2/6/2023
11.1.7 348 2/5/2023
11.1.6 357 2/4/2023
11.1.5 357 2/4/2023
11.1.4 390 12/30/2022
11.1.3 427 12/26/2022
11.1.2 373 12/26/2022
11.1.1 387 12/25/2022
11.0.0 380 12/24/2022
1.0.0 407 12/24/2022