Esempio n. 1
0
 /// <summary>
 /// Add entity to the given table
 /// </summary>
 /// <param name="tableName">Name of the table</param>
 /// <param name="instance">the instance to store</param>
 /// <param name="partitionKey">The partition key to use when storing the entity</param>
 /// <param name="rowKey">The row key to use when storing the entity</param>
 public void Add(string tableName, dynamic instance, string partitionKey, string rowKey)
 {
     _context.AddNewItem(tableName, TableItem.Create(instance, partitionKey, rowKey, _reservedPropertyBehavior));
 }