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
/// <param name="commandTimeout">The command timeout (in seconds).</param>
741
741
/// <param name="commandType">The type of command to execute.</param>
742
742
/// <returns>
743
-
/// A sequence of data of the supplied type; if a basic type (int, string, etc) is queried then the data from the first column in assumed, otherwise an instance is
743
+
/// A sequence of data of the supplied type; if a basic type (int, string, etc) is queried then the data from the first column is assumed, otherwise an instance is
744
744
/// created per row, and a direct column-name===member-name mapping is assumed (case insensitive).
@@ -760,7 +760,7 @@ public static T QueryFirst<T>(this IDbConnection cnn, string sql, object param =
760
760
/// <param name="commandTimeout">The command timeout (in seconds).</param>
761
761
/// <param name="commandType">The type of command to execute.</param>
762
762
/// <returns>
763
-
/// A sequence of data of the supplied type; if a basic type (int, string, etc) is queried then the data from the first column in assumed, otherwise an instance is
763
+
/// A sequence of data of the supplied type; if a basic type (int, string, etc) is queried then the data from the first column is assumed, otherwise an instance is
764
764
/// created per row, and a direct column-name===member-name mapping is assumed (case insensitive).
@@ -780,7 +780,7 @@ public static T QueryFirstOrDefault<T>(this IDbConnection cnn, string sql, objec
780
780
/// <param name="commandTimeout">The command timeout (in seconds).</param>
781
781
/// <param name="commandType">The type of command to execute.</param>
782
782
/// <returns>
783
-
/// A sequence of data of the supplied type; if a basic type (int, string, etc) is queried then the data from the first column in assumed, otherwise an instance is
783
+
/// A sequence of data of the supplied type; if a basic type (int, string, etc) is queried then the data from the first column is assumed, otherwise an instance is
784
784
/// created per row, and a direct column-name===member-name mapping is assumed (case insensitive).
@@ -800,7 +800,7 @@ public static T QuerySingle<T>(this IDbConnection cnn, string sql, object param
800
800
/// <param name="commandTimeout">The command timeout (in seconds).</param>
801
801
/// <param name="commandType">The type of command to execute.</param>
802
802
/// <returns>
803
-
/// A sequence of data of the supplied type; if a basic type (int, string, etc) is queried then the data from the first column in assumed, otherwise an instance is
803
+
/// A sequence of data of the supplied type; if a basic type (int, string, etc) is queried then the data from the first column is assumed, otherwise an instance is
804
804
/// created per row, and a direct column-name===member-name mapping is assumed (case insensitive).
@@ -822,7 +822,7 @@ public static T QuerySingleOrDefault<T>(this IDbConnection cnn, string sql, obje
822
822
/// <param name="commandType">The type of command to execute.</param>
823
823
/// <exception cref="ArgumentNullException"><paramref name="type"/> is <c>null</c>.</exception>
824
824
/// <returns>
825
-
/// A sequence of data of the supplied type; if a basic type (int, string, etc) is queried then the data from the first column in assumed, otherwise an instance is
825
+
/// A sequence of data of the supplied type; if a basic type (int, string, etc) is queried then the data from the first column is assumed, otherwise an instance is
826
826
/// created per row, and a direct column-name===member-name mapping is assumed (case insensitive).
@@ -845,7 +845,7 @@ public static IEnumerable<object> Query(this IDbConnection cnn, Type type, strin
845
845
/// <param name="commandType">The type of command to execute.</param>
846
846
/// <exception cref="ArgumentNullException"><paramref name="type"/> is <c>null</c>.</exception>
847
847
/// <returns>
848
-
/// A sequence of data of the supplied type; if a basic type (int, string, etc) is queried then the data from the first column in assumed, otherwise an instance is
848
+
/// A sequence of data of the supplied type; if a basic type (int, string, etc) is queried then the data from the first column is assumed, otherwise an instance is
849
849
/// created per row, and a direct column-name===member-name mapping is assumed (case insensitive).
@@ -867,7 +867,7 @@ public static object QueryFirst(this IDbConnection cnn, Type type, string sql, o
867
867
/// <param name="commandType">The type of command to execute.</param>
868
868
/// <exception cref="ArgumentNullException"><paramref name="type"/> is <c>null</c>.</exception>
869
869
/// <returns>
870
-
/// A sequence of data of the supplied type; if a basic type (int, string, etc) is queried then the data from the first column in assumed, otherwise an instance is
870
+
/// A sequence of data of the supplied type; if a basic type (int, string, etc) is queried then the data from the first column is assumed, otherwise an instance is
871
871
/// created per row, and a direct column-name===member-name mapping is assumed (case insensitive).
@@ -889,7 +889,7 @@ public static object QueryFirstOrDefault(this IDbConnection cnn, Type type, stri
889
889
/// <param name="commandType">The type of command to execute.</param>
890
890
/// <exception cref="ArgumentNullException"><paramref name="type"/> is <c>null</c>.</exception>
891
891
/// <returns>
892
-
/// A sequence of data of the supplied type; if a basic type (int, string, etc) is queried then the data from the first column in assumed, otherwise an instance is
892
+
/// A sequence of data of the supplied type; if a basic type (int, string, etc) is queried then the data from the first column is assumed, otherwise an instance is
893
893
/// created per row, and a direct column-name===member-name mapping is assumed (case insensitive).
@@ -911,7 +911,7 @@ public static object QuerySingle(this IDbConnection cnn, Type type, string sql,
911
911
/// <param name="commandType">The type of command to execute.</param>
912
912
/// <exception cref="ArgumentNullException"><paramref name="type"/> is <c>null</c>.</exception>
913
913
/// <returns>
914
-
/// A sequence of data of the supplied type; if a basic type (int, string, etc) is queried then the data from the first column in assumed, otherwise an instance is
914
+
/// A sequence of data of the supplied type; if a basic type (int, string, etc) is queried then the data from the first column is assumed, otherwise an instance is
915
915
/// created per row, and a direct column-name===member-name mapping is assumed (case insensitive).
@@ -928,7 +928,7 @@ public static object QuerySingleOrDefault(this IDbConnection cnn, Type type, str
928
928
/// <param name="cnn">The connection to query on.</param>
929
929
/// <param name="command">The command used to query on this connection.</param>
930
930
/// <returns>
931
-
/// A sequence of data of <typeparamref name="T"/>; if a basic type (int, string, etc) is queried then the data from the first column in assumed, otherwise an instance is
931
+
/// A sequence of data of <typeparamref name="T"/>; if a basic type (int, string, etc) is queried then the data from the first column is assumed, otherwise an instance is
932
932
/// created per row, and a direct column-name===member-name mapping is assumed (case insensitive).
/// <param name="cnn">The connection to query on.</param>
945
945
/// <param name="command">The command used to query on this connection.</param>
946
946
/// <returns>
947
-
/// A single instance or null of the supplied type; if a basic type (int, string, etc) is queried then the data from the first column in assumed, otherwise an instance is
947
+
/// A single instance or null of the supplied type; if a basic type (int, string, etc) is queried then the data from the first column is assumed, otherwise an instance is
948
948
/// created per row, and a direct column-name===member-name mapping is assumed (case insensitive).
@@ -957,7 +957,7 @@ public static T QueryFirst<T>(this IDbConnection cnn, CommandDefinition command)
957
957
/// <param name="cnn">The connection to query on.</param>
958
958
/// <param name="command">The command used to query on this connection.</param>
959
959
/// <returns>
960
-
/// A single or null instance of the supplied type; if a basic type (int, string, etc) is queried then the data from the first column in assumed, otherwise an instance is
960
+
/// A single or null instance of the supplied type; if a basic type (int, string, etc) is queried then the data from the first column is assumed, otherwise an instance is
961
961
/// created per row, and a direct column-name===member-name mapping is assumed (case insensitive).
@@ -970,7 +970,7 @@ public static T QueryFirstOrDefault<T>(this IDbConnection cnn, CommandDefinition
970
970
/// <param name="cnn">The connection to query on.</param>
971
971
/// <param name="command">The command used to query on this connection.</param>
972
972
/// <returns>
973
-
/// A single instance of the supplied type; if a basic type (int, string, etc) is queried then the data from the first column in assumed, otherwise an instance is
973
+
/// A single instance of the supplied type; if a basic type (int, string, etc) is queried then the data from the first column is assumed, otherwise an instance is
974
974
/// created per row, and a direct column-name===member-name mapping is assumed (case insensitive).
@@ -983,7 +983,7 @@ public static T QuerySingle<T>(this IDbConnection cnn, CommandDefinition command
983
983
/// <param name="cnn">The connection to query on.</param>
984
984
/// <param name="command">The command used to query on this connection.</param>
985
985
/// <returns>
986
-
/// A single instance of the supplied type; if a basic type (int, string, etc) is queried then the data from the first column in assumed, otherwise an instance is
986
+
/// A single instance of the supplied type; if a basic type (int, string, etc) is queried then the data from the first column is assumed, otherwise an instance is
987
987
/// created per row, and a direct column-name===member-name mapping is assumed (case insensitive).
0 commit comments