TableEntityAdapter 1.0.0

dotnet add package TableEntityAdapter --version 1.0.0
NuGet\Install-Package TableEntityAdapter -Version 1.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="TableEntityAdapter" Version="1.0.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add TableEntityAdapter --version 1.0.0
#r "nuget: TableEntityAdapter, 1.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 TableEntityAdapter as a Cake Addin
#addin nuget:?package=TableEntityAdapter&version=1.0.0

// Install TableEntityAdapter as a Cake Tool
#tool nuget:?package=TableEntityAdapter&version=1.0.0

Adapter class to allow reading and writing simple and complex POCO objects to azure table storage without inheriting from TableEntity class or implementing ITableEntity interface. POCO class you want to write to table storage can have multiple layers of nested complex properties and can be a struct. It can have nullable or enum properties, all of these will be written to azure table storage. TableEntityAdapter will handle conversion, using the Azure Storage SDK api s underneath.

Usage:
TableEntityAdapter<POCOClass> tableEntityAdapter = new TableEntityAdapter<POCOClass>(POCOObject, "partitionKey", "rowKey");

//Write this tableEntityAdapter directly to azure table storage.

//Read TableEntityAdapter<POCOClass> back from Azure Table Storage using the same partition and row key.

//The original POCOObject you wrote to azure table storage is saved in the OriginalEntity property of the TableEntityAdapter object that you read back from table storage.

Product Compatible and additional computed target framework versions.
.NET Framework net45 is compatible.  net451 was computed.  net452 was computed.  net46 was computed.  net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

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
1.0.0 4,924 4/5/2017

Initial release.