Tablestorage.Abstractions
3.3.0
dotnet add package Tablestorage.Abstractions --version 3.3.0
NuGet\Install-Package Tablestorage.Abstractions -Version 3.3.0
<PackageReference Include="Tablestorage.Abstractions" Version="3.3.0" />
paket add Tablestorage.Abstractions --version 3.3.0
#r "nuget: Tablestorage.Abstractions, 3.3.0"
// Install Tablestorage.Abstractions as a Cake Addin
#addin nuget:?package=Tablestorage.Abstractions&version=3.3.0
// Install Tablestorage.Abstractions as a Cake Tool
#tool nuget:?package=Tablestorage.Abstractions&version=3.3.0
Repository wrapper for Azure Table Storage
Product | Versions |
---|---|
.NET | net5.0 net5.0-windows net6.0 net6.0-android net6.0-ios net6.0-maccatalyst net6.0-macos net6.0-tvos net6.0-windows net7.0 net7.0-android net7.0-ios net7.0-maccatalyst net7.0-macos net7.0-tvos net7.0-windows |
.NET Core | netcoreapp2.0 netcoreapp2.1 netcoreapp2.2 netcoreapp3.0 netcoreapp3.1 |
.NET Standard | netstandard2.0 netstandard2.1 |
.NET Framework | net461 net462 net463 net47 net471 net472 net48 |
MonoAndroid | monoandroid |
MonoMac | monomac |
MonoTouch | monotouch |
Tizen | tizen40 tizen60 |
Xamarin.iOS | xamarinios |
Xamarin.Mac | xamarinmac |
Xamarin.TVOS | xamarintvos |
Xamarin.WatchOS | xamarinwatchos |
-
.NETStandard 2.0
- Azure.Data.Tables (>= 12.4.0)
- Azure.Storage.Common (>= 12.9.0)
- FluentValidation (>= 10.3.6)
- System.Linq.Async (>= 5.1.0)
- System.Reactive (>= 5.0.0)
- Useful.Extensions (>= 3.0.1)
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.0 | 9,586 | 1/15/2022 |
3.2.4 | 15,553 | 11/7/2020 |
3.2.2 | 5,029 | 5/3/2020 |
3.2.1 | 498 | 5/3/2020 |
3.1.0 | 3,924 | 2/23/2020 |
3.0.1-preview | 361 | 2/2/2020 |
3.0.0 | 831 | 1/26/2020 |
2.3.0 | 13,095 | 4/28/2019 |
2.2.0 | 6,512 | 1/6/2019 |
2.1.2 | 2,817 | 10/8/2018 |
2.1.1 | 1,203 | 7/1/2018 |
2.1.0 | 1,064 | 4/22/2018 |
2.0.0 | 1,223 | 2/11/2018 |
1.1.1 | 1,199 | 2/11/2018 |
1.1.0 | 2,325 | 9/3/2017 |
1.0.6 | 2,426 | 8/22/2017 |
1.0.5 | 979 | 8/19/2017 |
1.0.4 | 962 | 8/19/2017 |
1.0.3 | 913 | 7/29/2017 |
1.0.2 | 1,040 | 1/8/2017 |
1.0.1 | 1,477 | 11/20/2016 |
Moved library to use Azure.Data.Tables. Potential breaking change the TableEntity class is sealed in the new Microsoft Libraries and therefore cannot be inherited from anymore. Entities must now inherit from ITableEntity. Also the DynamicTableEntity class is no longer available so TableStoreDynamic uses TableEntity instead.