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
Copy file name to clipboardExpand all lines: CHANGELOG.md
+3
Original file line number
Diff line number
Diff line change
@@ -4,6 +4,9 @@
4
4
5
5
⚠️ Important Notice: Starting from this release, we won’t be listing every dependency change in our changelog. This helps us maintain the project faster and focus on important features for our InfluxDB client.
6
6
7
+
### Features:
8
+
1.[#705](https://github.com/influxdata/influxdb-client-csharp/pull/705): `QueryAsyncEnumerable()` now supports `FluxRecord` streaming.
9
+
7
10
### CI
8
11
1.[#681](https://github.com/influxdata/influxdb-client-csharp/pull/681): Add build for `dotnet8`
/// 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