コード例 #1
0
ファイル: BatchMutation.cs プロジェクト: sm2x/hectorsharp
 public BatchMutation AddDeletion(string key, IList <string> columnFamilies, Deletion deletion)
 {
     AddMutation(key, columnFamilies, new Mutation(deletion));
     return(this);
 }
コード例 #2
0
ファイル: Mutation.cs プロジェクト: sm2x/hectorsharp
 public Mutation(Deletion deletion)
 {
     Deletion = deletion;
 }