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

Fix #1822. The new test along with a presentation of this fix is here: https://github.com/DapperLib/Dapper/issues/1822#issuecomment-1254715993

Using .NET Core 6 Dapper v 2.0.123 ```csharp using Dapper; using Microsoft.Data.SqlClient; using var connection = new SqlConnection("Server=localhost;Database=Test;Integrated Security=True;Encrypt=False"); var reader = connection.ExecuteReader("select 'test' as col"); var rowParser = reader.GetRowParser();...

Hi, I have some problem when using dotnet Core 2.2 + Dapper to construct a Project. Problem1: In the beginning of the month, a huge number of requests coming into...

Hi i have problem and i was searching on internet but not found the correct answer. Can you tell me how to solve it. When i execute the first result...

Writing a string longer than 4000 bytes to an text class property fails with an obscure error (index size -1). Writing a string of 3999 bytes is fine. I know...

Using Dapper 2.0.90 and ``` > select @@version; Microsoft SQL Azure (RTM) - 12.0.2000.8 May 12 2022 23:11:24 Copyright (C) 2022 Microsoft Corporation ``` Given ```sql SELECT 1 FROM foo...

MySQL Server 5.6.29 Dapper 1.50.1 MySql.Data 6.9.9 Execute the following code (query adapted from https://github.com/StackExchange/dapper-dot-net#list-support): ``` var csb = new MySqlConnectionStringBuilder { Server = "localhost", UserID = "root", Password =...

db:mysql

Previously reported in #1379, but the issue was closed by the original reporter for some reason, despite the actual problem still being present in Dapper. ```c# connection.Query( "Select xxx from...

First, much to Dapper's credit, amongst the other wonderful functionality it providers, it provides a way for all of its supported databases to be able to use arrays as parameters,...

needs-review

ctx: https://github.com/DapperLib/Dapper/pull/1975#issuecomment-1947297767