Dapper
Dapper copied to clipboard
Dapper - a simple object mapper for .Net
This fixes issue #2028 that occurs when executing `ExecuteAsync` on a `CommandDefinition` with `Pipelined` command flag in combination with multiple parameters on the `Microsoft.Data.SqlClient` and with `MultipleActiveRecordSets` set to `true`....
When I use Dapper.Rainbow for SQLite, the following message appears: System.Data.SQLite.SQLiteException: "SQL logic error No such table: INFORMATION_SCHEMA.TABLES" Is Dapper.Rainbow not supporting SQLite? The code show as below: ```cs class...
Hello Marc, hope you are fine my dear:) Can you look at this thread please. https://stackoverflow.com/questions/66096906/how-to-return-unique-columns-only-with-join-statement-in-dapper-query-sql Looks like the columns returned from dapper join query. are duplicated. Maybe you can...
There is a use case requested to bake in EF Sql Retry logic discussed in #1864. However to do so requires a Property on the IDbCommand to be set. Using...
Our code uses a "wrapped connection" for APM tracing (inspired by mini profiler), and so this code in FeatureSupport.cs doesn't work: ` public static FeatureSupport Get(IDbConnection connection) { string name...
Sometimes we have a DbDataReader or IDataReader that could not have been obtained from Dapper, but we want to map it to types we use with Dapper all the same....
Fix for issue #1080 Sqlite doesn't have a table called INFORMATION_SCHEMA.TABLES, instead you must use SQLITE_MASTER table. Updated the code to determine if it IsSqliteConection and append the correct table...
Hi, im using asp.net core 2.1 and this is my sample code: ` [HttpGet] [Route("dashboarddounatdata")] public IActionResult Dashboarddounatdata() { var connection = new SqlConnection(_connectionString); var donutChart2 = new DonutChart2(); try...
Command not disposed in `DbWrappedReader `when using `DisposeAsync`. => when using `async using` with `ExecuteReaderAsync` command is not disposed
In the SqlMapper.Async [Line 451](https://github.com/DapperLib/Dapper/blob/main/Dapper/SqlMapper.Async.cs#L451) and [Line 1323](https://github.com/DapperLib/Dapper/blob/main/Dapper/SqlMapper.Async.cs#L1323) what is the purpose of calling `Nullable.GetUnderlyingType`, if it is not used afterwards?