You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/// Executes the Flux query against the InfluxDB 2.x and returns
240
+
/// an asynchronous enumerable of <see cref="FluxRecord"/>.
241
+
/// </summary>
242
+
/// <param name="query">the flux query to execute</param>
243
+
/// <param name="org">specifies the source organization. If the org is not specified then is used config from <see cref="InfluxDBClientOptions.Org" />.</param>
/// Executes the Flux query against the InfluxDB 2.x and returns
251
+
/// an asynchronous enumerable of <see cref="FluxRecord"/>.
252
+
/// </summary>
253
+
/// <param name="query">the flux query to execute</param>
254
+
/// <param name="org">specifies the source organization. If the org is not specified then is used config from <see cref="InfluxDBClientOptions.Org" />.</param>
returnQueryEnumerable(request, r =>Mapper.ConvertToEntity<T>(r),cancellationToken);
486
+
}
470
487
471
-
varrequestMessage=CreateRequest(query,org);
488
+
/// <summary>
489
+
/// Executes the Flux query against the InfluxDB 2.x and returns
490
+
/// an asynchronous enumerable of <see cref="FluxRecord"/>.
491
+
/// </summary>
492
+
/// <param name="query">the flux query to execute</param>
493
+
/// <param name="org">specifies the source organization. If the org is not specified then is used config from <see cref="InfluxDBClientOptions.Org" />.</param>
awaitforeach(varrecordinQueryEnumerable(requestMessage, it =>Mapper.ConvertToEntity<T>(it),
474
-
cancellationToken).ConfigureAwait(false))
475
-
yieldreturnrecord;
502
+
/// <summary>
503
+
/// Executes the Flux query against the InfluxDB 2.x and returns
504
+
/// an asynchronous enumerable of <see cref="FluxRecord"/>.
505
+
/// </summary>
506
+
/// <param name="query">the flux query to execute</param>
507
+
/// <param name="org">specifies the source organization. If the org is not specified then is used config from <see cref="InfluxDBClientOptions.Org" />.</param>
0 commit comments