There was an error while loading. Please reload this page.
var table = new TableStorage("Table", "UseDevelopmentStorage=true"); await table.CreateIfNotExists();
var entity = new TableEntity(); await table.Insert(entity);
var entities = new List<TableEntity>(); await table.InsertOrReplace(entities);
var entity = new Dictionary<string, object>(); entity.Add("PartitionKey", "MyPartition"); entity.Add("RowKey", "MyRow"); entity.Add("CustomValue", Guid.NewGuid()); await storage.InsertOrReplace(entity);
var dictionaries = new List<IDictionary<string, object>>(); await table.InsertOrReplace(dictionaries);
await table.QueryByPartitionAndRow<Model>("partition", "key");
await table.QueryByPartition<Model>("partition");
await table.QueryByRow<Model>("key");
await table.Query<Model>(new TableQuery<Model>());