TableStorage.Abstractions.TableEntityConverters 1.3.0-beta

This is a prerelease version of TableStorage.Abstractions.TableEntityConverters.
There is a newer version of this package available.
See the version list below for details.
dotnet add package TableStorage.Abstractions.TableEntityConverters --version 1.3.0-beta
NuGet\Install-Package TableStorage.Abstractions.TableEntityConverters -Version 1.3.0-beta
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="TableStorage.Abstractions.TableEntityConverters" Version="1.3.0-beta" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add TableStorage.Abstractions.TableEntityConverters --version 1.3.0-beta
#r "nuget: TableStorage.Abstractions.TableEntityConverters, 1.3.0-beta"
#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 TableStorage.Abstractions.TableEntityConverters as a Cake Addin
#addin nuget:?package=TableStorage.Abstractions.TableEntityConverters&version=1.3.0-beta&prerelease

// Install TableStorage.Abstractions.TableEntityConverters as a Cake Tool
#tool nuget:?package=TableStorage.Abstractions.TableEntityConverters&version=1.3.0-beta&prerelease

Easily convert POCOs (Plain Old CLR Objects) to Azure Table Storage TableEntities and vice versa.

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  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. 
.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.

NuGet packages (2)

Showing the top 2 NuGet packages that depend on TableStorage.Abstractions.TableEntityConverters:

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
2.0.3 2,672 8/29/2023
2.0.1 7,912 4/2/2022
2.0.0 9,652 1/23/2022
1.6.0-beta 8,427 1/20/2022
1.5.0 13,414 11/17/2021
1.5.0-beta 1,289 11/15/2021
1.4.1 1,990 11/3/2021
1.4.0 6,561 9/30/2021
1.3.2 1,244 6/26/2021
1.3.1 6,204 8/19/2020
1.3.0 3,487 5/11/2020
1.3.0-beta 385 5/11/2020
1.2.0 7,185 3/2/2020
1.1.8 2,352 2/25/2020
1.1.7 3,565 2/17/2020
1.1.6 1,332 9/16/2019
1.1.5 19,781 6/18/2019
1.1.4 8,677 12/25/2018
1.1.3 19,077 1/27/2018
1.1.2 9,648 8/31/2017
1.1.0 998 8/30/2017
1.0.1 1,122 8/15/2017
1.0.0 1,163 8/14/2017

Bug fix for when deserializing objects with readonly properties