Skip to content

Commit

Permalink
Minor Tables readme improvements (#14846)
Browse files Browse the repository at this point in the history
* Minor Tables readme improvements

* Update readme.md
  • Loading branch information
loic-sharma authored Sep 3, 2020
1 parent 47243d8 commit 01fcdbe
Showing 1 changed file with 5 additions and 5 deletions.
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]:

```
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].

## Known Issues

Expand Down

0 comments on commit 01fcdbe

Please sign in to comment.