コード例 #1
0
 public virtual void DeleteEntity(string partitionKey, string rowKey, ETag ifMatch = default)
 {
     _batchOperations.AddDeleteEntityRequest(
         _changeset,
         _table,
         partitionKey,
         rowKey,
         ifMatch.ToString(),
         null,
         null,
         queryOptions: new QueryOptions()
     {
         Format = _format
     });
 }