상속: 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;
 }