AzureCloudTableContext 2.0.1-beta

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

// Install AzureCloudTableContext as a Cake Tool
#tool nuget:?package=AzureCloudTableContext&version=2.0.1-beta&prerelease

In short it enables the ability for POCO's to NOT have to inherit from TableEntity and allows for secondary indexes to be defined via a contextually managed set of partitioned keys. For a full description and the source code go to https://github.com/Hallmanac/AzureCloudTable/

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

Showing the top 1 NuGet packages that depend on AzureCloudTableContext:

Package Downloads
SimpleCqrs.EventStore.AzureTable

Implementation of the IEventStore interface for the SimpleCQRS library that uses Azure Table Storage as the backend.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
2.2.0-beta 1,728 11/5/2013
2.1.0-beta 1,209 11/2/2013
2.0.7-beta 1,189 10/26/2013
2.0.6-beta 1,214 10/1/2013
2.0.5-beta 1,187 10/1/2013
2.0.4-beta 1,174 9/6/2013
2.0.3-beta 1,164 9/6/2013
2.0.2-beta 1,077 8/3/2013
2.0.1-beta 1,094 6/5/2013

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.