Beispiel #1
0
 public async Task AddKeyAsync(string key, string value)
 {
     var obj = new InternalAzureTableEntity()
     {
         PartitionKey = EscapeKey(key),
         RowKey       = string.Empty,
         Value        = value
     };
     var op = TableOperation.Insert(obj);
     await _table.ExecuteAsync(op);
 }
Beispiel #2
0
 public AzureTableEntity(InternalAzureTableEntity o, CloudTable t)
 {
     this._obj   = o;
     this._table = t;
 }