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