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
Fundamental .Excute methods are unchanged.
.Retrieve, .RetrieveAsync, .Results, .ResultsAsync,
.AsSourceBlockAsync, etc...
Are all update to take advantage of the method's intention to the fullest.
/// Iterates all records within the first result set using an IDataReader and returns the desired results as a list of Dictionaries containing only the specified column values.
153
+
/// </summary>
154
+
/// <param name="columnNames">The column names to select.</param>
155
+
/// <param name="normalizeColumnOrder">Orders the results arrays by ordinal.</param>
156
+
/// <returns>The QueryResult that contains all the results and the column mappings.</returns>
/// Asynchronously returns all records and iteratively attempts to map the fields to type T.
225
+
/// </summary>
226
+
/// <typeparam name="T">The model type to map the values to (using reflection).</typeparam>
227
+
/// <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>
228
+
/// <returns>A task containing the list of results.</returns>
/// Iterates all records within the first result set using an IDataReader and returns the desired results as a list of Dictionaries containing only the specified column values.
425
425
/// </summary>
426
426
/// <param name="columnNames">The column names to select.</param>
427
-
/// <returns>the DataReaderResults that contain all the results and the column mappings.</returns>
427
+
/// <returns>The QueryResult that contains all the results and the column mappings.</returns>
0 commit comments