public static Task <IList <TableResult> > InsertAsync <T>(this CloudTableClient tableClient, string tableName, IEnumerable <T> items, string partitionKey, Func <T, string> rowKey) =>
 tableClient.InsertAsync(tableName, items, _ => partitionKey, rowKey);