Skip to content

Instantly share code, notes, and snippets.

View rajeshchada's full-sized avatar

Rajesh Chada rajeshchada

View GitHub Profile

Keybase proof

I hereby claim:

  • I am rajeshchada on github.
  • I am rajeshchada (https://keybase.io/rajeshchada) on keybase.
  • I have a public key ASD3UkMiuOyAnesbucIRPTImpW4MkO5mu-9c-4BR3Ru-3Ao

To claim this, I am signing this object:

@rajeshchada
rajeshchada / TableStorageClient.cs
Last active March 22, 2017 06:14
Retrieve results from Table storage and convert to c# model object which inherits table entity
public class TableStorageClient
{
private string connectionString = string.Empty;
public TableStorageClient(string _connectionString)
{
this.connectionString = _connectionString;
}
private CloudTable GetTable(string tableName) {