Ax.Fw.Storage
11.0.0
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 Ax.Fw.Storage --version 11.0.0
NuGet\Install-Package Ax.Fw.Storage -Version 11.0.0
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="11.0.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Ax.Fw.Storage --version 11.0.0
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: Ax.Fw.Storage, 11.0.0"
#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.
// Install Ax.Fw.Storage as a Cake Addin #addin nuget:?package=Ax.Fw.Storage&version=11.0.0 // Install Ax.Fw.Storage as a Cake Tool #tool nuget:?package=Ax.Fw.Storage&version=11.0.0
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
Ax.Fw.Storage
Simple document storage provider based on SQLite
Usage example:
// getting lifetime
var lifetime = new Lifetime();
// getting db filepath
var dbFile = GetDbPath();
try
{
var storage = new SqliteDocumentStorage(dbFile, lifetime);
// create document; document instance contains meta data - namespace, version, last modified datetime, etc
var doc = await storage.CreateDocumentAsync("test_doc_type", null, lifetime.Token);
// create record; record instance contains actual data; one document can contain multiple records
var record = await storage.WriteSimpleRecordAsync(doc.DocId, "test-data", lifetime.Token);
// retrieve data; simple records in document are distinguished by type (strongly-typed)
var data = await storage.ReadSimpleRecordAsync<string>(doc.DocId, lifetime.Token);
Assert.Equal("test-data", data?.Data);
}
finally
{
await lifetime.CompleteAsync();
new FileInfo(dbFile).TryDelete();
}
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | 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 was computed. 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. |
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
-
net6.0
- Ax.Fw (>= 11.0.0)
- Newtonsoft.Json (>= 13.0.2)
- System.Data.SQLite.Core (>= 1.0.117)
- System.Reactive (>= 5.0.0)
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.4.240 | 121 | 11/2/2024 |
14.4.239 | 140 | 10/18/2024 |
14.4.237 | 87 | 9/19/2024 |
14.4.236 | 140 | 8/11/2024 |
14.3.235 | 106 | 8/10/2024 |
14.3.234 | 66 | 8/5/2024 |
14.3.233 | 71 | 7/29/2024 |
14.3.232 | 88 | 7/23/2024 |
14.3.231 | 86 | 7/22/2024 |
14.3.230 | 101 | 7/17/2024 |
14.3.229 | 75 | 7/17/2024 |
14.3.228 | 86 | 7/11/2024 |
14.3.227 | 90 | 7/10/2024 |
14.3.226 | 116 | 7/3/2024 |
14.3.225 | 111 | 6/14/2024 |
14.3.224 | 80 | 6/7/2024 |
14.3.223 | 100 | 6/6/2024 |
14.3.222 | 108 | 5/17/2024 |
14.3.221 | 132 | 4/12/2024 |
14.2.219 | 102 | 4/11/2024 |
14.2.218 | 99 | 4/10/2024 |
14.2.217 | 193 | 3/29/2024 |
14.2.216 | 114 | 3/27/2024 |
14.2.215 | 110 | 3/22/2024 |
14.1.212 | 116 | 3/11/2024 |
14.1.211 | 102 | 3/11/2024 |
14.1.210 | 106 | 3/6/2024 |
14.1.208 | 112 | 3/6/2024 |
14.1.206 | 118 | 3/2/2024 |
14.1.205 | 119 | 3/1/2024 |
14.0.204 | 120 | 2/19/2024 |
14.0.203 | 105 | 2/16/2024 |
14.0.201 | 114 | 2/15/2024 |
13.0.200 | 128 | 2/10/2024 |
13.0.199 | 108 | 2/10/2024 |
13.0.198 | 105 | 2/10/2024 |
13.0.197 | 286 | 12/10/2023 |
13.0.196 | 122 | 12/10/2023 |
13.0.195 | 121 | 12/9/2023 |
13.0.194 | 104 | 12/6/2023 |
13.0.192 | 119 | 12/5/2023 |
13.0.191 | 146 | 11/26/2023 |
13.0.189 | 128 | 11/24/2023 |
13.0.186 | 124 | 11/23/2023 |
13.0.185 | 128 | 11/22/2023 |
13.0.182 | 126 | 11/18/2023 |
13.0.181 | 148 | 11/14/2023 |
13.0.180 | 138 | 11/12/2023 |
13.0.179 | 119 | 11/10/2023 |
12.1.178 | 148 | 10/25/2023 |
12.1.177 | 140 | 10/24/2023 |
12.1.176 | 138 | 10/21/2023 |
12.1.175 | 140 | 10/21/2023 |
12.1.173 | 133 | 10/16/2023 |
12.1.172 | 153 | 10/15/2023 |
12.1.171 | 136 | 10/15/2023 |
12.1.170 | 127 | 10/15/2023 |
12.1.168 | 153 | 10/15/2023 |
12.1.167 | 113 | 10/14/2023 |
12.1.166 | 172 | 9/7/2023 |
12.1.165 | 196 | 8/28/2023 |
12.1.164 | 221 | 8/15/2023 |
12.1.163 | 188 | 8/14/2023 |
12.1.162 | 163 | 8/14/2023 |
12.1.161 | 204 | 6/20/2023 |
12.1.160 | 203 | 6/10/2023 |
12.1.158 | 168 | 5/31/2023 |
12.1.157 | 166 | 5/22/2023 |
12.1.7 | 162 | 5/21/2023 |
12.1.0 | 160 | 5/19/2023 |
12.0.21 | 169 | 5/18/2023 |
12.0.20 | 149 | 5/18/2023 |
12.0.19 | 170 | 5/10/2023 |
12.0.18 | 152 | 5/4/2023 |
12.0.17 | 177 | 5/3/2023 |
12.0.16 | 195 | 4/30/2023 |
12.0.15 | 185 | 4/30/2023 |
12.0.13 | 191 | 4/27/2023 |
12.0.12 | 199 | 4/27/2023 |
12.0.10 | 261 | 4/15/2023 |
12.0.9 | 246 | 4/6/2023 |
12.0.8 | 248 | 3/27/2023 |
12.0.7 | 240 | 3/27/2023 |
12.0.3 | 237 | 3/22/2023 |
12.0.2 | 238 | 3/22/2023 |
12.0.1 | 271 | 3/1/2023 |
12.0.0 | 303 | 2/11/2023 |
11.1.10 | 287 | 2/11/2023 |
11.1.9 | 289 | 2/10/2023 |
11.1.8 | 288 | 2/6/2023 |
11.1.7 | 288 | 2/5/2023 |
11.1.6 | 300 | 2/4/2023 |
11.1.5 | 295 | 2/4/2023 |
11.1.4 | 333 | 12/30/2022 |
11.1.3 | 368 | 12/26/2022 |
11.1.2 | 313 | 12/26/2022 |
11.1.1 | 327 | 12/25/2022 |
11.0.0 | 320 | 12/24/2022 |
1.0.0 | 348 | 12/24/2022 |