Inheritance: Microsoft.WindowsAzure.Storage.Table.TableEntity
示例#1
0
文件: Posts.cs 项目: giggio/Recast
 public void Update(Post post)
 {
     table.Merge(post);
 }
示例#2
0
文件: Posts.cs 项目: giggio/Recast
 public bool Insert(Post post)
 {
     table.Insert(post);
     return true;
 }