TableStorage.Abstractions.POCO 2.7.0

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

// Install TableStorage.Abstractions.POCO as a Cake Tool
#tool nuget:?package=TableStorage.Abstractions.POCO&version=2.7.0

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.

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 (1)

Showing the top 1 NuGet packages that depend on TableStorage.Abstractions.POCO:

Package Downloads
TableStorage.Abstractions.POCO.SecondaryIndexes

Geared more toward Azure Table Storage (vs CosmosDB, which has an ATS api), using an intra/inter partition (or table) secondary index pattern. This library handles keeping the indexes up to date as data gets mutated.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
4.0.0 1,126 8/30/2023
3.3.0 7,018 4/2/2022
3.2.0 8,045 1/23/2022
3.2.0-beta 1,366 1/20/2022
3.1.0 1,916 11/17/2021
3.1.0-beta 1,368 11/16/2021
3.0.1 1,720 11/3/2021
3.0.0 1,849 10/5/2021
2.7.1 5,492 8/20/2020
2.7.0 2,413 5/11/2020
2.6.1 2,389 3/27/2020
2.6.0 2,086 3/26/2020
2.4.0 2,037 3/3/2020
2.3.1 2,139 2/25/2020
2.3.0 2,106 2/25/2020
2.2.0 2,196 2/17/2020
2.1.0 2,115 4/29/2019
2.0.1 6,150 1/10/2019
2.0.0 2,128 12/26/2018
1.3.2 2,421 2/11/2018
1.3.1 2,310 1/27/2018
1.3.0 2,594 9/5/2017
1.2.0 2,404 9/3/2017
1.1.3 2,323 9/2/2017
1.1.2.1 2,434 8/31/2017
1.1.2 2,324 8/31/2017
1.1.1 2,461 8/31/2017
1.0.1 2,562 8/31/2017
1.0.0 2,577 8/30/2017

Bug fix to prevent exceptions when deserializing objects with readonly properties