| LOW | benchmarks/Dapper.Tests.Performance/LegacyTests.cs | 421 | // { |
| LOW | Dapper.ProviderTools/BulkCopy.cs | 81 | |
| LOW | Dapper.ProviderTools/BulkCopy.cs | 101 | [System.Diagnostics.CodeAnalysis.SuppressMessage("ApiDesign", "RS0026:Do not add multiple public overloads with |
| LOW | Dapper.ProviderTools/BulkCopy.cs | 121 | /// <summary> |
| LOW | .github/workflows/cla.yml | 21 | uses: contributor-assistant/github-action@v2.3.0 |
| LOW | .github/workflows/cla.yml | 41 | #custom-allsigned-prcomment: 'pull request comment when all contributors has signed, defaults to **CLA Assista |
| LOW | Dapper.Rainbow/Database.cs | 361 | /// <param name="sql">The SQL to execute.</param> |
| LOW | Dapper.Rainbow/Database.cs | 381 | /// </summary> |
| LOW | Dapper.Rainbow/Database.cs | 401 | /// <typeparam name="TSecond">The second type in the recordset.</typeparam> |
| LOW | Dapper.Rainbow/Database.cs | 421 | /// <typeparam name="TThird">The third type in the recordset.</typeparam> |
| LOW | Dapper.Rainbow/Database.cs | 441 | /// <typeparam name="TThird">The third type in the recordset.</typeparam> |
| LOW | Dapper.Rainbow/Database.cs | 461 | /// <param name="buffered">Whether the results should be buffered in memory.</param> |
| LOW | Dapper.Rainbow/Database.Async.cs | 61 | /// <summary> |
| LOW | Dapper.Rainbow/Database.Async.cs | 81 | database.QueryAsync<T>("select * from " + TableName); |
| LOW | Dapper.Rainbow/Database.Async.cs | 101 | _connection.QueryAsync<T>(sql, param as object, Transaction, _commandTimeout); |
| LOW | Dapper.Rainbow/Database.Async.cs | 121 | /// <param name="map">The function to map row types to the return type.</param> |
| LOW | Dapper.Rainbow/Database.Async.cs | 141 | /// <param name="param">The parameters to use for this query.</param> |
| LOW | Dapper.Rainbow/Database.Async.cs | 161 | /// <param name="param">The parameters to use for this query.</param> |
| LOW | Dapper.Rainbow/Database.Async.cs | 181 | /// <param name="map">The function to map row types to the return type.</param> |
| LOW | Dapper.Rainbow/Database.Async.cs | 201 | /// Execute a command that returns multiple result sets, and access each in turn. |
| LOW | Dapper/SqlMapper.Identity.cs | 141 | } |
| LOW | Dapper/SqlMapper.Identity.cs | 161 | #pragma warning restore CS0618 // Type or member is obsolete |
| LOW | Dapper/SqlMapper.Identity.cs | 181 | [Obsolete("Please use " + nameof(GetHashCode) + ". This API may be removed at a later date.")] |
| LOW | Dapper/SqlMapper.Identity.cs | 221 | /// </summary> |
| LOW | Dapper/SqlMapper.Identity.cs | 241 | /// <summary> |
| LOW | Dapper/DynamicParameters.cs | 321 | |
| LOW | Dapper/SqlMapper.cs | 341 | /// Configure the specified type to be processed by a custom handler. |
| LOW | Dapper/SqlMapper.cs | 561 | } |
| LOW | Dapper/SqlMapper.cs | 581 | public static object? ExecuteScalar(this IDbConnection cnn, string sql, object? param = null, IDbTransaction? tr |
| LOW | Dapper/SqlMapper.cs | 601 | return ExecuteScalarImpl<T>(cnn, ref command); |
| LOW | Dapper/SqlMapper.cs | 701 | /// <returns>An <see cref="IDataReader"/> that can be used to iterate over the results of the SQL query.</return |
| LOW | Dapper/SqlMapper.cs | 721 | return DbWrappedReader.Create(dbcmd, reader); |
| LOW | Dapper/SqlMapper.cs | 741 | /// Execute parameterized SQL and return an <see cref="IDataReader"/>. |
| LOW | Dapper/SqlMapper.cs | 761 | /// <param name="sql">The SQL to execute for the query.</param> |
| LOW | Dapper/SqlMapper.cs | 781 | /// <remarks>Note: the row can be accessed via "dynamic", or by casting to an IDictionary<string,object></ |
| LOW | Dapper/SqlMapper.cs | 801 | /// Return a dynamic object with properties matching the columns. |
| LOW | Dapper/SqlMapper.cs | 821 | /// <param name="commandTimeout">The command timeout (in seconds).</param> |
| LOW | Dapper/SqlMapper.cs | 841 | /// created per row, and a direct column-name===member-name mapping is assumed (case insensitive). |
| LOW | Dapper/SqlMapper.cs | 861 | /// <returns> |
| LOW | Dapper/SqlMapper.cs | 881 | /// <param name="commandType">The type of command to execute.</param> |
| LOW | Dapper/SqlMapper.cs | 901 | /// <param name="commandTimeout">The command timeout (in seconds).</param> |
| LOW | Dapper/SqlMapper.cs | 921 | /// <param name="transaction">The transaction to use, if any.</param> |
| LOW | Dapper/SqlMapper.cs | 941 | /// <param name="param">The parameters to pass, if any.</param> |
| LOW | Dapper/SqlMapper.cs | 961 | /// Executes a single-row query, returning the data typed as <paramref name="type"/>. |
| LOW | Dapper/SqlMapper.cs | 981 | } |
| LOW | Dapper/SqlMapper.cs | 1001 | if (type is null) throw new ArgumentNullException(nameof(type)); |
| LOW | Dapper/SqlMapper.cs | 1021 | [System.Diagnostics.CodeAnalysis.SuppressMessage("ApiDesign", "RS0026:Do not add multiple public overloads with |
| LOW | Dapper/SqlMapper.cs | 1041 | /// A sequence of data of the supplied type; if a basic type (int, string, etc) is queried then the data from th |
| LOW | Dapper/SqlMapper.cs | 1061 | /// </returns> |
| LOW | Dapper/SqlMapper.cs | 1081 | /// <summary> |
| LOW | Dapper/SqlMapper.cs | 1101 | /// A single instance of the supplied type; if a basic type (int, string, etc) is queried then the data from the |
| LOW | Dapper/SqlMapper.cs | 1121 | /// Execute a command that returns multiple result sets, and access each in turn. |
| LOW | Dapper/SqlMapper.cs | 1401 | catch (Exception ex) |
| LOW | Dapper/SqlMapper.cs | 1421 | /// <param name="param">The parameters to use for this query.</param> |
| LOW | Dapper/SqlMapper.cs | 1441 | /// <param name="sql">The SQL to execute for this query.</param> |
| LOW | Dapper/SqlMapper.cs | 1461 | /// <typeparam name="TFourth">The fourth type in the recordset.</typeparam> |
| LOW | Dapper/SqlMapper.cs | 1481 | /// <typeparam name="TFirst">The first type in the recordset.</typeparam> |
| LOW | Dapper/SqlMapper.cs | 1501 | /// <summary> |
| LOW | Dapper/SqlMapper.cs | 1521 | /// <returns>An enumerable of <typeparamref name="TReturn"/>.</returns> |
| LOW | Dapper/SqlMapper.cs | 1541 | /// <param name="param">The parameters to use for this query.</param> |
| 67 more matches not shown… |