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
/// If set to true, the command runs synchronously and all data is acquired before the method returns.
777
777
/// If set to false (default) the data is received asynchronously (deferred: data will be subsequently posted) and the source block (transform) can be completed early.</param>
778
778
/// <returns>The buffer block that will contain the results.</returns>
779
-
publicISourceBlock<T>AsSourceBlock<T>(
779
+
publicIReceivableSourceBlock<T>AsSourceBlock<T>(
780
780
Func<IDataRecord,T>transform,
781
781
boolsynchronousExecution=false)
782
782
{
@@ -805,7 +805,7 @@ void I()
805
805
/// If set to false (default) the data is received asynchronously (data will be subsequently posted) and the source block (transform) can be completed early.</param>
806
806
/// <param name="options">The optional ExecutionDataflowBlockOptions to use with the source.</param>
807
807
/// <returns>A transform block that is receiving the results.</returns>
/// If set to false (default) the data is received asynchronously (data will be subsequently posted) and the source block (transform) can be completed early.</param>
845
845
/// <param name="options">The optional ExecutionDataflowBlockOptions to use with the source.</param>
846
846
/// <returns>A transform block that is receiving the results.</returns>
@@ -857,7 +857,7 @@ public ISourceBlock<T> AsSourceBlock<T>(
857
857
/// <typeparam name="T">The model type to map the values to (using reflection).</typeparam>
858
858
/// <param name="fieldMappingOverrides">An override map of field names to column names where the keys are the property names, and values are the column names.</param>
859
859
/// <returns>A transform block that is receiving the results.</returns>
@@ -441,7 +441,7 @@ public ISourceBlock<T> AsSourceBlockAsync<T>(
441
441
/// <param name="fieldMappingOverrides">An override map of field names to column names where the keys are the property names, and values are the column names.</param>
442
442
/// <param name="options">The optional ExecutionDataflowBlockOptions to use with the source.</param>
443
443
/// <returns>A transform block that is receiving the results.</returns>
@@ -453,7 +453,7 @@ public ISourceBlock<T> AsSourceBlockAsync<T>(
453
453
/// <typeparam name="T">The model type to map the values to (using reflection).</typeparam>
454
454
/// <param name="fieldMappingOverrides">An override map of field names to column names where the keys are the property names, and values are the column names.</param>
455
455
/// <returns>A transform block that is receiving the results.</returns>
/// <param name="options">The optional ExecutionDataflowBlockOptions to use with the source.</param>
465
465
/// <param name="fieldMappingOverrides">An override map of field names to column names where the keys are the property names, and values are the column names.</param>
466
466
/// <returns>A transform block that is receiving the results.</returns>
/// <param name="fieldMappingOverrides">An override map of field names to column names where the keys are the property names, and values are the column names.</param>
509
509
/// <param name="options"></param>
510
510
/// <returns>A transform block that is receiving the results.</returns>
@@ -170,8 +170,8 @@ public static ISourceBlock<Dictionary<string, object>> AsMappedDictionaries(this
170
170
/// <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>
171
171
/// <param name="options">The ExecutionDataflowBlockOptions for transforming the data into the source block.</param>
172
172
/// <returns>An block that dequeues the results and returns a column mapped dictionary for each entry</returns>
@@ -187,7 +187,7 @@ public static ISourceBlock<T> To<T>(
187
187
/// <param name="source">The query result. Typically produced by a .Retrieve method.</param>
188
188
/// <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>
189
189
/// <returns>An block that dequeues the results and returns a column mapped dictionary for each entry</returns>
@@ -198,7 +198,7 @@ public static ISourceBlock<T> To<T>(this QueryResult<ISourceBlock<object[]>> sou
198
198
/// <param name="source">The query result. Typically produced by a .Retrieve method.</param>
199
199
/// <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>
200
200
/// <returns>An block that dequeues the results and returns a column mapped dictionary for each entry</returns>
0 commit comments