Пример #1
0
 /// <summary>
 /// Inserts all the given rows of data into this table.
 /// This method just creates a <see cref="TableReference"/> and delegates to <see cref="BigQueryClient.InsertRows(TableReference, IEnumerable{BigQueryInsertRow}, InsertOptions)"/>.
 /// </summary>
 /// <param name="rows">The rows to insert. Must not be null or contain null entries.</param>
 /// <param name="options">The options for the operation. May be null, in which case defaults will be supplied.</param>
 public void InsertRows(IEnumerable <BigQueryInsertRow> rows, InsertOptions options = null) =>
 _client.InsertRows(Reference, rows, options);