Skip to content

A LINQPad driver to perform queries against Azure Table Storage.

License

Notifications You must be signed in to change notification settings

madd0/AzureStorageDriver

Repository files navigation

README

This is a plug-in for LINQPad that enables the execution of queries against Azure Table Storage.

It allows you to add storage accounts as connections in LINQPad. It will list all tables for each account and all columns in each table. Since Azure tables can have mixed schemas, a property was added in version 1.1.0 allowing users to specify the number of rows that should be scanned to determine the schema of each table. For the same reason, any value types are made Nullable<> since it cannot be guaranteed that they will have a value for a given row.

Nuget Build Status

Issues and Feature requests

Issues and feature requests can be made in the projects issues page on GitHub.

Versions

v2.1.2 - 2022-11-13

  • Updated dependency versions:

    • LINQPad.Reference: 1.1.0 -> 1.3.0
    • SonarAnalyzer.CSharp: 8.0.0.9566 -> 8.48.0.56517
    • Microsoft.CodeAnalysis.CSharp: 3.3.1 -> 3.11.0
  • Added explicit reference to Newtonsoft.Json to work around issue #22

v2.1.1 - 2020-02-04

  • Workaround for problem described in #20
    • The .NET Core 3.1 driver was getting .NET Core 3.0 references, which prevented it from compiling the generated code because the driver itself was a reference and therefore needed 3.1 references.
    • As a workaround, the driver is no longer a required reference for the generated code, which is compatible with either .NET Core 3.0 or 3.1, so no matter what runtime LinqPad provides, the code should compile.

v2.1.0 - 2020-01-05

Happy new year! After last month's update, I decided to work on some really old pending PRs, do some cleanup and tackle #19 which came in on the first day of the year.

v2.0.0 - 2019-12-01

It took a while for a new version to come out, but with LINQPad 6 and big changes in the Azure SDK libraries, I thought it was time. And, although functionally not much has changed, I decided that a new distribution channel and total change in the underlying SDK, deserved a new major version.

Note: the Azure Storage SDK used by the LINQPad 5 version is in maintenance mode and it will be deprecated soon according to Microsoft. However, since LINQPad 5 plugins target .NET Framework 4.6, the switch to the package used by the LINQPad 6 plugin is not possible.

v1.1.0 - 2014-08-20

  • Uses latest version of Azure Storage Client Library (4.2.0)
  • Provides a solution to issue #1 by adding a configuration parameter that allows users to specify the number of rows to be scanned to determine the schema of a table (100 by default).

v1.0.1 - 2013-08-15

Corrects issue #4.

v1.0.0-beta - 2010-01-08

This is the first public release. Needs real-world testing.