Dapper icon indicating copy to clipboard operation
Dapper copied to clipboard

Dapper - a simple object mapper for .Net

Results 304 Dapper issues
Sort by recently updated
recently updated
newest added

see review comment and discussion [here](https://github.com/DapperLib/Dapper/pull/1912/files/7ea1ab3adebd3c18ae6dd2355a2d1533140f5e93#r1228366767)

I've encountered an issue when using Dapper with SQL Server. In my SQL queries, I sometimes include '?' characters inside the string values, as a part of the string itself,...

There's a lot of preamble and back-story here. If you're short of time, scroll down to "Call to action". --- You would be forgiven for thinking > The devs aren't...

v3.0
announcement
area:api

I have posted this on StackOverflow but I think it might be a bug, unless I'm missing something super simple. Am trying to add a custom type handler for an...

need Dapper QueryToListAsync with result List

I got an overflow exception when read uint from db, |package|version| |---|---| |Dapper|2.0.123| |Microsoft.Data.Sqlite|7.0.5| |.NET|7| more details: https://github.com/dotnet/efcore/issues/30910 I found an fix commit: https://github.com/DapperLib/Dapper/pull/1795, it's has been published?

Following this issue https://github.com/MiniProfiler/dotnet/issues/319 . The problem is still there. When changing `IDbConnection connection = new NpgsqlConnection(connectionString);` to `IDbConnection connection = new StackExchange.Profiling.Data.ProfiledDbConnection(new NpgsqlConnection(connectionString), MiniProfiler.Current);` Queries containing `Any()` fails with...

help please on net core 6 with dapper -When inserting Unicode characters into an Oracle database using Dapper dynamic parameters in a .NET Core 6 API, when the inserted value...

I am using the `QueryAsync` method with `CommandFlags.None` so it will not be buffered. ```cs CommandDefinition command = new CommandDefinition("SELECT 1", flags: CommandFlags.None); IEnumerable results = await connection.QueryAsync(command); foreach (bool...

Could anyone provide some ways to run the test suites or build from source guidance? i tried to run it. however, got a bunch of errors. thanks UPDATE: i successfully...