Exemplo n.º 1
0
 /// <summary>
 /// Retrieves a model within this dataset.
 /// This method just creates a <see cref="ModelReference"/> and delegates to <see cref="BigQueryClient.GetModel(ModelReference, GetModelOptions)"/>.
 /// </summary>
 /// <param name="modelId">The model ID. Must not be null.</param>
 /// <param name="options">The options for the operation. May be null, in which case defaults will be supplied.</param>
 /// <returns>The requested model.</returns>
 public BigQueryModel GetModel(string modelId, GetModelOptions options = null) =>
 _client.GetModel(GetModelReference(modelId), options);