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
@@ -261,15 +261,15 @@ public static ChannelReader<object[]> AsChannel(this IExecuteReader command,
261
261
/// <param name="singleReader">True will cause the resultant reader to optimize for the assumption that no concurrent read operations will occur.</param>
262
262
/// <param name="arrayPool">The array pool to acquire buffers from.</param>
263
263
/// <returns>The channel reader containing the results.</returns>
@@ -586,14 +587,14 @@ public static ChannelReader<object[]> AsChannelAsync(this IExecuteReaderAsync co
586
587
/// <param name="singleReader">True will cause the resultant reader to optimize for the assumption that no concurrent read operations will occur.</param>
587
588
/// <param name="arrayPool">The array pool to acquire buffers from.</param>
588
589
/// <returns>The channel reader containing the results.</returns>
Copy file name to clipboardExpand all lines: Source/Channel/Transformer.cs
+9-12Lines changed: 9 additions & 12 deletions
Original file line number
Diff line number
Diff line change
@@ -12,20 +12,16 @@
12
12
13
13
namespaceOpen.Database.Extensions;
14
14
15
-
internalclassTransformer<T>:Core.Transformer<T>
15
+
/// <summary>Constructs a <see cref="Transformer{T}"/>.</summary>
16
+
/// <param name="fieldMappingOverrides">An optional override map of field names to column names where the keys are the property names, and values are the column names.</param>
/// <summary>Constructs a <see cref="Transformer{T}"/>.</summary>
19
-
/// <param name="fieldMappingOverrides">An optional override map of field names to column names where the keys are the property names, and values are the column names.</param>
/// Static utility for creating a Transformer <typeparamref name="T"/>.
27
23
/// </summary>
28
-
/// <param name="fieldMappingOverrides"></param>
24
+
/// <param name="fieldMappingOverrides">An optional override map of field names to column names where the keys are the property names, and values are the column names.</param>
/// Transforms the results from the reader by first buffering the results and if/when the buffer size is reached, the results are transformed to a channel for reading.
0 commit comments