TheByteStuff.AzureTableUtilities 6.0.0

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

// Install TheByteStuff.AzureTableUtilities as a Cake Tool
#tool nuget:?package=TheByteStuff.AzureTableUtilities&version=6.0.0

Backup, Copy, Delete and Restore options for use with Azure Tables.  An alternative to tools such as AZCopy.

Backup destination may be to a local file or to Azure storage blob.  File may be optionally compressed (zipped).
Copy allows for the same or different connection spec for Source and Destination.
Restore location may be from local file or Azure storage blob.
Blob storage and Azure Table storage connection specs may point to different servers to allow for use in production backup scenarios as well as for restoration of development environments.

Restore/Copy will create the table if it does not exist, however data on an existing table will not be deleted. It may be overwritten depending on the source data.

Delete allows for full table deletion as well as for rows.

When working with Blob storage, a folder in the format {BlobRootName}--table-{TableName} will be used to store the file or retreive the file under the Blob root specified.  File created will be in the format {TableName}_Backup_{TimeStamp}.

Backup, Copy and Delete operations allow for an optional list of filters (Filter) to be provided to select a subset of the source data for the transation.

Refer to project url for code snippets and additional information.

The Byte Stuff, LLC is not affiliated with Microsoft nor has Microsoft endorsed this project.

Personal and commercial use of this software is free; however, a donation is appreciated if you find the software useful.

Code for a command line executable along with sample Docker build is available on GitHub -- https://github.com/TheByteStuff/AzureTableBackupRestore

Suggestions or donations are both appreciated and welcome can be made by using the "Contact" tab at https://www.thebytestuff.com/Contact?utm_source=nuget&amp;utm_medium=www&amp;utm_campaign=AzureTableUtilities
v6.0.0 - ** Backup/Restore is NOT compatible with prior versions **   Upgrade from  Microsoft.Azure.Cosmos.Table library to Azure.Data.Table.   The Microsoft.Azure.Cosmos.Table library was deprecated on 3/31/2023.  The Azure.Data.Table API (TableEntity) required a change to retain proper data typing of Int32/Int64 during serlization and is not compatible with the prior version of the customized DynamicTableEntityJsonConverter/Serializer.  As a result, backup files created with prior versions are not compatible to be restored with this release.  Similarly, backups taken with this release may not be restored under prior versions.  It is possible to convert a prior file version to work with the new serialization.  At this time, no tool is being offered to do so.

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

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
6.0.0 3,789 6/25/2023
5.6.2-pre 542 8/18/2022
5.6.1-pre 456 6/24/2022
5.4.1-pre 594 7/29/2021
5.4.0-pre 656 3/3/2021
5.3.0-pre 691 7/28/2020
5.0.0-pre 748 6/25/2020
4.6.3 3,267 1/12/2023
4.6.2 3,626 8/18/2022
4.6.1 1,921 6/23/2022
4.5.1 4,571 9/2/2021
4.5.0 2,073 8/5/2021
4.4.1 1,024 7/29/2021
4.4.0 5,327 3/2/2021
4.3.0 1,495 7/28/2020
4.2.2 1,046 7/16/2020
4.2.1 926 7/7/2020
4.2.0 932 7/7/2020
4.1.0 937 6/30/2020
4.0.2 975 6/25/2020
4.0.1 1,017 6/25/2020
4.0.0 900 6/25/2020
3.0.0 1,028 6/23/2020
2.1.0 966 6/16/2020
2.0.0 946 6/11/2020
1.0.1 933 5/14/2020
1.0.0 975 5/12/2020

** Backup/Restore is NOT compatible with prior versions **   

Upgrade from Microsoft.Azure.Cosmos.Table to Azure.Data.Table.   The Microsoft.Azure.Cosmos.Table library was deprecated on 3/31/2023.  The Azure.Data.Table API supports serialization directly and has different typing of serialized data than achived through the customized DynamicTableEntityJsonConverter/Serializer.  Backup files created with prior versions are not compatible to be restored with this release.  Backups taken with this release may not be restored under prior versions.  It is possible to convert a prior file version to work with the new serialization.