예제 #1
0
 /// <summary>
 /// Merge the entity with specified partition key and row key
 /// </summary>
 /// <param name="tableName">Name of the table</param>
 /// <param name="instance">the instance to merge</param>
 /// <param name="partitionKey">The partition key to use when merging the entity</param>
 /// <param name="rowKey">The row key to use when merging the entity</param>
 /// <param name="conflictHandling">Method for handling ETag conflicts</param>
 public void Merge(string tableName, dynamic instance, string partitionKey, string rowKey, ConflictHandling conflictHandling)
 {
     _context.Merge(tableName, TableItem.Create(instance, partitionKey, rowKey, _reservedPropertyBehavior), conflictHandling);
 }