Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Minor Tables readme improvements #14846

Merged
merged 2 commits into from
Sep 3, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions sdk/tables/Azure.Data.Tables/readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,22 +3,22 @@
Azure Table storage is a service that stores large amounts of structured NoSQL data in the cloud, providing
a key/attribute store with a schema-less design.

Azure Cosmos DB provides a Table API for applications that are written for Azure Table storage and that need premium capabilities like:
Azure Cosmos DB provides a Table API for applications that are written for Azure Table storage that need premium capabilities like:

- Turnkey global distribution.
- Dedicated throughput worldwide.
- Single-digit millisecond latencies at the 99th percentile.
- Guaranteed high availability.
- Automatic secondary indexing.

The Azure Tables client library can seamlessly target either Azure table storage or Azure Cosmos DB table service endpoints with no code changes.
The Azure Tables client library can seamlessly target either Azure Table storage or Azure Cosmos DB table service endpoints with no code changes.

[Source code][table_client_src] | [Package (NuGet)][table_client_nuget_package] | [API reference documentation][api_reference] | [Samples][table_client_samples]

## Getting started

### Install the package
Install the Azure Tables client library for .NET with [NuGet][nuget]:
Install the Azure Tables client library for .NET with [NuGet][table_client_nuget_package]:
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Should this link to the future page? https://www.nuget.org/packages/Azure.Data.Tables

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The CI build's link validation won't allow it until that url resolves. I was planning to update it once we release next week.


```
dotnet add package Azure.Data.Tables --version 3.0.0-beta.1
Expand Down Expand Up @@ -230,7 +230,7 @@ catch (RequestFailedException ex) when (ex.Status == (int)HttpStatusCode.Conflic
The simplest way to see the logs is to enable the console logging.
To create an Azure SDK log listener that outputs messages to console use AzureEventSourceListener.CreateConsoleLogger method.

```
```C#
// Setup a listener to monitor logged events.
using AzureEventSourceListener listener = AzureEventSourceListener.CreateConsoleLogger();
```
Expand All @@ -239,7 +239,7 @@ To learn more about other logging mechanisms see [here][logging].

## Next steps

Get started with our [Table samples][table_client_samples]:
Get started with our [Table samples][table_client_samples].


## Contributing
Expand Down