-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
19 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,22 @@ | ||
# README # | ||
|
||
This is a plug-in for [LINQPad](http://www.linqpad.net) that enables the | ||
execution of queries against [Azure Table Storage](http://msdn.microsoft.com/en-us/library/windowsazure/dd179463.aspx). | ||
execution of queries against [Azure Table Storage](http://msdn.microsoft.com/en-us/library/windowsazure/dd179463.aspx). | ||
|
||
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, the columns shown correspond | ||
to all schemas combined. 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. | ||
|
||
## Issues and Feature requests ## | ||
|
||
Issues and feature requests can be made in the projects | ||
[issues page on GitHub](https://github.com/madd0/AzureStorageDriver/issues). | ||
|
||
## Versions ## | ||
|
||
### v1.0.0-beta - 2010-01-08 ### | ||
|
||
This is the first public release. Needs real-world testing. |