예제 #1
0
 /// <summary>
 /// Retrieves the result of this job, which must be a query job.
 /// This method just creates a <see cref="JobReference"/> and delegates to <see cref="BigQueryClient.GetQueryResults(JobReference, GetQueryResultsOptions)"/>.
 /// </summary>
 /// <remarks>
 /// <para>
 /// This method will only return when the query has completed.
 /// </para>
 /// </remarks>
 /// <param name="options">The options for the operation. May be null, in which case defaults will be supplied.</param>
 /// <returns>The result of the query.</returns>
 public BigQueryResults GetQueryResults(GetQueryResultsOptions options = null) => _client.GetQueryResults(Reference, GetQueryDestinationTable(), options);
 /// <summary>
 /// Retrieves the result of this job, which must be a query job.
 /// This method just creates a <see cref="JobReference"/> and delegates to <see cref="BigQueryClient.GetQueryResults(JobReference, GetQueryResultsOptions)"/>.
 /// </summary>
 /// <param name="options">The options for the operation. May be null, in which case defaults will be supplied.</param>
 /// <returns>The result of the query.</returns>
 public BigQueryResults GetQueryResults(GetQueryResultsOptions options = null) => _client.GetQueryResults(Reference, options);