TableStorage.Abstractions
1.0.6
See the version list below for details.
dotnet add package TableStorage.Abstractions --version 1.0.6
NuGet\Install-Package TableStorage.Abstractions -Version 1.0.6
<PackageReference Include="TableStorage.Abstractions" Version="1.0.6" />
paket add TableStorage.Abstractions --version 1.0.6
#r "nuget: TableStorage.Abstractions, 1.0.6"
// Install TableStorage.Abstractions as a Cake Addin #addin nuget:?package=TableStorage.Abstractions&version=1.0.6 // Install TableStorage.Abstractions as a Cake Tool #tool nuget:?package=TableStorage.Abstractions&version=1.0.6
Repository wrapper for Azure Table Storage
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET Framework | net46 is compatible. net461 was computed. net462 was computed. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
-
- Newtonsoft.Json (>= 10.0.3)
- WindowsAzure.Storage (>= 8.3.0)
NuGet packages (2)
Showing the top 2 NuGet packages that depend on TableStorage.Abstractions:
Package | Downloads |
---|---|
TableStorage.Abstractions.POCO
A repository wrapper for Azure Table Storage that uses POCOs (Plain Old CLR Objects) instead of objects that implemeent ITableEntity. The Azure Storage SDK requires that objects that it works with to implement the ITableEntity interface. This puts us into one of two places that are often not desirable: You implement the ITableEntity interace, or inherit from TableEntity. This is easy, but now you've got a leaky abstraction, as well as properties that won't make much sense in your domain (e.g. instead of a UserId, you've now got a RowKey, of the wrong type), or you have fields that are out of place, like ETag and Timestamp. You create DTOs to save to ship data back and forth from the domain to Table Storage. This is a common style, but often is overkill, especially if we're just looking for a simple abstraction on top of Azure Table Storage. This simple library seeks to take care of the mapping for us, so that you can continue to write your domain objects as POCOs, while still being able to leverage the Azure Storage SDK. The library will convert simple properties to fields in Azure Table Storage. Complex types will serialize as json. |
|
TableStorage.Abstractions.Trie
An implementation of a trie-like data structure using Azure Table Storage to enable type-ahead style searching. Targets netcoreapp2.1, netstandard2.0 and net461. |
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
3.3.10 | 54,214 | 6/11/2023 |
3.3.9 | 593 | 6/11/2023 |
3.3.7 | 1,791 | 2/7/2023 |
3.3.6 | 698 | 2/4/2023 |
3.3.0 | 27,737 | 1/15/2022 |
3.2.4 | 28,013 | 11/7/2020 |
3.2.2 | 7,132 | 5/3/2020 |
3.2.1 | 1,180 | 5/3/2020 |
3.1.0 | 11,308 | 2/23/2020 |
3.0.1-preview | 1,055 | 2/2/2020 |
3.0.0 | 1,558 | 1/26/2020 |
2.3.0 | 27,998 | 4/28/2019 |
2.2.0 | 8,409 | 1/6/2019 |
2.1.2 | 3,555 | 10/8/2018 |
2.1.1 | 1,982 | 7/1/2018 |
2.1.0 | 1,750 | 4/22/2018 |
2.0.0 | 1,954 | 2/11/2018 |
1.1.1 | 3,226 | 2/11/2018 |
1.1.0 | 6,446 | 9/3/2017 |
1.0.6 | 9,703 | 8/22/2017 |
1.0.5 | 1,807 | 8/19/2017 |
1.0.4 | 1,814 | 8/19/2017 |
1.0.3 | 1,628 | 7/29/2017 |
1.0.2 | 1,672 | 1/8/2017 |
1.0.1 | 4,610 | 11/20/2016 |
Changed TableEntity to ITableEntity