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
/// Asynchronously returns all records and iteratively attempts to map the fields to type T.
291
+
/// </summary>
292
+
/// <typeparam name="T">The model type to map the values to (using reflection).</typeparam>
293
+
/// <param name="reader">The IDataReader to read results from.</param>
294
+
/// <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>
295
+
/// <returns>A task containing the list of results.</returns>
/// Asynchronously returns all records and iteratively attempts to map the fields to type T.
304
+
/// </summary>
305
+
/// <typeparam name="T">The model type to map the values to (using reflection).</typeparam>
306
+
/// <param name="reader">The IDataReader to read results from.</param>
307
+
/// <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>
308
+
/// <returns>A task containing the list of results.</returns>
/// Asynchronously returns all records and iteratively attempts to map the fields to type T.
314
+
/// </summary>
315
+
/// <typeparam name="T">The model type to map the values to (using reflection).</typeparam>
316
+
/// <param name="reader">The IDataReader to read results from.</param>
317
+
/// <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>
318
+
/// <returns>A task containing the list of results.</returns>
0 commit comments