@@ -654,7 +654,7 @@ private static async Task<int> ExecuteImplAsync(IDbConnection cnn, CommandDefini
654
654
}
655
655
656
656
/// <summary>
657
- /// Perform a asynchronous multi-mapping query with 2 input types.
657
+ /// Perform an asynchronous multi-mapping query with 2 input types.
658
658
/// This returns a single type, combined from the raw types via <paramref name="map"/>.
659
659
/// </summary>
660
660
/// <typeparam name="TFirst">The first type in the recordset.</typeparam>
@@ -675,7 +675,7 @@ public static Task<IEnumerable<TReturn>> QueryAsync<TFirst, TSecond, TReturn>(th
675
675
new CommandDefinition ( sql , param , transaction , commandTimeout , commandType , buffered ? CommandFlags . Buffered : CommandFlags . None , default ) , map , splitOn ) ;
676
676
677
677
/// <summary>
678
- /// Perform a asynchronous multi-mapping query with 2 input types.
678
+ /// Perform an asynchronous multi-mapping query with 2 input types.
679
679
/// This returns a single type, combined from the raw types via <paramref name="map"/>.
680
680
/// </summary>
681
681
/// <typeparam name="TFirst">The first type in the recordset.</typeparam>
@@ -690,7 +690,7 @@ public static Task<IEnumerable<TReturn>> QueryAsync<TFirst, TSecond, TReturn>(th
690
690
MultiMapAsync < TFirst , TSecond , DontMap , DontMap , DontMap , DontMap , DontMap , TReturn > ( cnn , command , map , splitOn ) ;
691
691
692
692
/// <summary>
693
- /// Perform a asynchronous multi-mapping query with 3 input types.
693
+ /// Perform an asynchronous multi-mapping query with 3 input types.
694
694
/// This returns a single type, combined from the raw types via <paramref name="map"/>.
695
695
/// </summary>
696
696
/// <typeparam name="TFirst">The first type in the recordset.</typeparam>
@@ -712,7 +712,7 @@ public static Task<IEnumerable<TReturn>> QueryAsync<TFirst, TSecond, TThird, TRe
712
712
new CommandDefinition ( sql , param , transaction , commandTimeout , commandType , buffered ? CommandFlags . Buffered : CommandFlags . None , default ) , map , splitOn ) ;
713
713
714
714
/// <summary>
715
- /// Perform a asynchronous multi-mapping query with 3 input types.
715
+ /// Perform an asynchronous multi-mapping query with 3 input types.
716
716
/// This returns a single type, combined from the raw types via <paramref name="map"/>.
717
717
/// </summary>
718
718
/// <typeparam name="TFirst">The first type in the recordset.</typeparam>
@@ -728,7 +728,7 @@ public static Task<IEnumerable<TReturn>> QueryAsync<TFirst, TSecond, TThird, TRe
728
728
MultiMapAsync < TFirst , TSecond , TThird , DontMap , DontMap , DontMap , DontMap , TReturn > ( cnn , command , map , splitOn ) ;
729
729
730
730
/// <summary>
731
- /// Perform a asynchronous multi-mapping query with 4 input types.
731
+ /// Perform an asynchronous multi-mapping query with 4 input types.
732
732
/// This returns a single type, combined from the raw types via <paramref name="map"/>.
733
733
/// </summary>
734
734
/// <typeparam name="TFirst">The first type in the recordset.</typeparam>
@@ -751,7 +751,7 @@ public static Task<IEnumerable<TReturn>> QueryAsync<TFirst, TSecond, TThird, TFo
751
751
new CommandDefinition ( sql , param , transaction , commandTimeout , commandType , buffered ? CommandFlags . Buffered : CommandFlags . None , default ) , map , splitOn ) ;
752
752
753
753
/// <summary>
754
- /// Perform a asynchronous multi-mapping query with 4 input types.
754
+ /// Perform an asynchronous multi-mapping query with 4 input types.
755
755
/// This returns a single type, combined from the raw types via <paramref name="map"/>.
756
756
/// </summary>
757
757
/// <typeparam name="TFirst">The first type in the recordset.</typeparam>
@@ -768,7 +768,7 @@ public static Task<IEnumerable<TReturn>> QueryAsync<TFirst, TSecond, TThird, TFo
768
768
MultiMapAsync < TFirst , TSecond , TThird , TFourth , DontMap , DontMap , DontMap , TReturn > ( cnn , command , map , splitOn ) ;
769
769
770
770
/// <summary>
771
- /// Perform a asynchronous multi-mapping query with 5 input types.
771
+ /// Perform an asynchronous multi-mapping query with 5 input types.
772
772
/// This returns a single type, combined from the raw types via <paramref name="map"/>.
773
773
/// </summary>
774
774
/// <typeparam name="TFirst">The first type in the recordset.</typeparam>
@@ -792,7 +792,7 @@ public static Task<IEnumerable<TReturn>> QueryAsync<TFirst, TSecond, TThird, TFo
792
792
new CommandDefinition ( sql , param , transaction , commandTimeout , commandType , buffered ? CommandFlags . Buffered : CommandFlags . None , default ) , map , splitOn ) ;
793
793
794
794
/// <summary>
795
- /// Perform a asynchronous multi-mapping query with 5 input types.
795
+ /// Perform an asynchronous multi-mapping query with 5 input types.
796
796
/// This returns a single type, combined from the raw types via <paramref name="map"/>.
797
797
/// </summary>
798
798
/// <typeparam name="TFirst">The first type in the recordset.</typeparam>
@@ -810,7 +810,7 @@ public static Task<IEnumerable<TReturn>> QueryAsync<TFirst, TSecond, TThird, TFo
810
810
MultiMapAsync < TFirst , TSecond , TThird , TFourth , TFifth , DontMap , DontMap , TReturn > ( cnn , command , map , splitOn ) ;
811
811
812
812
/// <summary>
813
- /// Perform a asynchronous multi-mapping query with 6 input types.
813
+ /// Perform an asynchronous multi-mapping query with 6 input types.
814
814
/// This returns a single type, combined from the raw types via <paramref name="map"/>.
815
815
/// </summary>
816
816
/// <typeparam name="TFirst">The first type in the recordset.</typeparam>
@@ -835,7 +835,7 @@ public static Task<IEnumerable<TReturn>> QueryAsync<TFirst, TSecond, TThird, TFo
835
835
new CommandDefinition ( sql , param , transaction , commandTimeout , commandType , buffered ? CommandFlags . Buffered : CommandFlags . None , default ) , map , splitOn ) ;
836
836
837
837
/// <summary>
838
- /// Perform a asynchronous multi-mapping query with 6 input types.
838
+ /// Perform an asynchronous multi-mapping query with 6 input types.
839
839
/// This returns a single type, combined from the raw types via <paramref name="map"/>.
840
840
/// </summary>
841
841
/// <typeparam name="TFirst">The first type in the recordset.</typeparam>
@@ -854,7 +854,7 @@ public static Task<IEnumerable<TReturn>> QueryAsync<TFirst, TSecond, TThird, TFo
854
854
MultiMapAsync < TFirst , TSecond , TThird , TFourth , TFifth , TSixth , DontMap , TReturn > ( cnn , command , map , splitOn ) ;
855
855
856
856
/// <summary>
857
- /// Perform a asynchronous multi-mapping query with 7 input types.
857
+ /// Perform an asynchronous multi-mapping query with 7 input types.
858
858
/// This returns a single type, combined from the raw types via <paramref name="map"/>.
859
859
/// </summary>
860
860
/// <typeparam name="TFirst">The first type in the recordset.</typeparam>
@@ -921,7 +921,7 @@ private static async Task<IEnumerable<TReturn>> MultiMapAsync<TFirst, TSecond, T
921
921
}
922
922
923
923
/// <summary>
924
- /// Perform a asynchronous multi-mapping query with an arbitrary number of input types.
924
+ /// Perform an asynchronous multi-mapping query with an arbitrary number of input types.
925
925
/// This returns a single type, combined from the raw types via <paramref name="map"/>.
926
926
/// </summary>
927
927
/// <typeparam name="TReturn">The combined type to return.</typeparam>
0 commit comments