Inheritance: Microsoft.WindowsAzure.Storage.Table.TableEntity
Exemplo n.º 1
0
 public void Update(Post post)
 {
     table.Merge(post);
 }
Exemplo n.º 2
0
 public bool Insert(Post post)
 {
     table.Insert(post);
     return true;
 }