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
Inspection fixes and moved auto-connection opening to before command is created to ensure robust compatibility with other DbCommand types like Snowflake.
/// <param name="synchronousExecution">By default the command is deferred.
768
-
/// If set to true, the command runs synchronusly and all data is acquired before the method returns.
769
-
/// If set to false (default) the data is recieved asynchronously (deferred: data will be subsequently posted) and the source block (transform) can be completed early.</param>
776
+
/// If set to true, the command runs synchronously and all data is acquired before the method returns.
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>
770
778
/// <returns>The buffer block that will contain the results.</returns>
/// <typeparam name="T">The model type to map the values to (using reflection).</typeparam>
791
802
/// <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>
792
803
/// <param name="synchronousExecution">By default the command is deferred.
793
-
/// If set to true, the command runs synchronusly and all data is acquired before the method returns.
794
-
/// If set to false (default) the data is recieved asynchronously (data will be subsequently posted) and the source block (transform) can be completed early.</param>
795
-
/// <returns>A transform block that is recieving the results.</returns>
/// If set to true, the command runs synchronously and all data is acquired before the method returns.
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
+
/// <param name="options">The optional ExecutionDataflowBlockOptions to use with the source.</param>
807
+
/// <returns>A transform block that is receiving the results.</returns>
/// <typeparam name="T">The model type to map the values to (using reflection).</typeparam>
825
841
/// <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>
826
842
/// <param name="synchronousExecution">By default the command is deferred.
827
-
/// If set to true, the command runs synchronusly and all data is acquired before the method returns.
828
-
/// If set to false (default) the data is recieved asynchronously (data will be subsequently posted) and the source block (transform) can be completed early.</param>
829
-
/// <returns>A transform block that is recieving the results.</returns>
/// If set to true, the command runs synchronously and all data is acquired before the method returns.
844
+
/// 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
+
/// <param name="options">The optional ExecutionDataflowBlockOptions to use with the source.</param>
846
+
/// <returns>A transform block that is receiving the results.</returns>
/// Provides a transform block as the source of records.
836
856
/// </summary>
837
857
/// <typeparam name="T">The model type to map the values to (using reflection).</typeparam>
838
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>
839
-
/// <returns>A transform block that is recieving the results.</returns>
859
+
/// <returns>A transform block that is receiving the results.</returns>
0 commit comments