public virtual Response <TableItem> CreateTable(string tableName, CancellationToken cancellationToken = default)
        {
            var response = _tableOperations.Create(new TableProperties(tableName), null, queryOptions: new QueryOptions {
                Format = _format
            }, cancellationToken: cancellationToken);

            return(Response.FromValue(response.Value as TableItem, response.GetRawResponse()));
        }
 public virtual TableResponse CreateTable(string tableName, CancellationToken cancellationToken = default) =>
 _tableOperations.Create(new TableProperties(tableName), null, new QueryOptions {
     Format = _format
 }, cancellationToken: cancellationToken);