@@ -447,7 +447,6 @@ public static int Execute(this IDbConnection cnn, string sql, object param)
...
@@ -447,7 +447,6 @@ public static int Execute(this IDbConnection cnn, string sql, object param)
/// <summary>
/// <summary>
/// Executes a query, returning the data typed as per T
/// Executes a query, returning the data typed as per T
/// </summary>
/// </summary>
/// <remarks>the dynamic param may seem a bit odd, but this works around a major usability issue in vs, if it is Object vs completion gets annoying. Eg type new <space> get new object</remarks>
/// <returns>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
/// <returns>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
/// created per row, and a direct column-name===member-name mapping is assumed (case insensitive).
/// created per row, and a direct column-name===member-name mapping is assumed (case insensitive).