/// <summary>
 /// Inserts a single row of data into this table.
 /// This method just creates a <see cref="TableReference"/> and delegates to <see cref="BigQueryClient.Insert(TableReference, BigQueryInsertRow, InsertOptions)"/>.
 /// </summary>
 /// <param name="row">The data to insert. Must not be null.</param>
 /// <param name="options">The options for the operation. May be null, in which case defaults will be supplied.</param>
 public void Insert(BigQueryInsertRow row, InsertOptions options = null) =>
 _client.Insert(Reference, row, options);