Hallmanac.AzureCloudTable 1.2.0

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

// Install Hallmanac.AzureCloudTable as a Cake Tool
#tool nuget:?package=Hallmanac.AzureCloudTable&version=1.2.0

In short, it enables the ability for POCO's to NOT have to inherit from TableEntity by saving them as JSON blobs and allows for secondary indexes to be defined via a contextually managed set of Index Name Keys (used as the Table Partition Key).

1.2.0 -- Fixed bug that was introduced in the last release. Made the .NET Framework version support .Net 4.5 since we now have .net standard 2.0 support. Also added some functionality for deleting all items in an index. Worked to improve performance in large batch deletes.

For full release notes visit this NuGet package on nuget.org.

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 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. 
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

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.2.0 1,982 9/3/2017
1.1.1 1,694 9/2/2017
1.1.0 1,798 6/19/2017
1.0.0 1,520 6/5/2017

1.2.0 -- Fixed bug that was introduced in the last release. Made the .NET Framework version support .Net 4.5 since we now have .net standard 2.0 support. Also added some functionality for deleting all items in an index. Worked to improve performance in large batch deletes.

1.1.1 -- Added support for .NET Standard 2.0

1.1.0 -- Added custom encoder and decoder for Azure Table Keys to custom encode only the invalid characters of a Partition or Row key. Fixed issue of not being able to delete without etag. Removed Parallel.ForEach from batch operations since that's not a very good use case for it.

1.0.0 -- A refactored version of AzureCloudTableContext with better naming, code documentation comments, and a more intuitive usage of the APIs. New version number and library name due to breaking changes mostly around renaming.

********
Previous Library
*******
2.2.0-beta -- Added async support and optimized for best practices (turning nagling off and turning Expect100Continue off). Also provided access to more low level features of the Storage SDK through the TableAccessContext class.

2.1.0-beta -- Refactored out the calls to GetPropertyName to improve performance. See issue #2 on github.com/Hallmanac/AzureCloudTable

2.0.7-beta -- Updated nuget packages to latest versions.

2.0.6-beta -- Updated the actual version number of the assembly as well as changed the required dependency for WindowsAzure.Storage to be the latest v2.1.0.

2.0.5-beta -- Fixed reference to incorrect version of Microsoft.WindowsAzure.Storage. It was pointed to v2.0.0 and is now correctly pointed to v2.1.0.

2.0.4-beta -- Fixed references in nuget packages from disparate git branches.

2.0.3-beta -- Updated Nuget packages.

2.0.2-beta-- Updated Nuget packages to use the latest (stable) update of the Azure Storage client library.

2.0.1-beta-- Added a check on the CloudTableContext class that verifies the the current runtime list of PartitionSchemas matches up to the stored list of partition keys. If there are "newly created" PartitionSchemas (i.e. someone changed the code to add a new schema) then on the first time it's encountered the table will get re-indexed by retrieving the default schema and re-saving them using all the current schemas.

2.0.0-beta-- Added type information to the CloudTableEntity. Changed the serialization to include type information. Changed the default RowKey to be based on the ID of the provided TDomainObject. Fixed bugs related to batch commits.

1.1.2 - Renamed some fluent api methods, added a static way to set the RowKeyCriteria to be a Chronological based (or Reverse Chronological Based) row key.

1.1.0 - Made breaking changes to API. Simplified it to have only one partition key per schema.