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

Hello, I'm using Dapper 2.1.66 with SQL Server and Net 8. I noticed a weird thing using the SplitOn feature where it doesn't work as expected. I created a basic...

bug
needs-triage

In the README in the section ["Execute a Command multiple times"](https://github.com/StackExchange/Dapper/blob/master/Readme.md#execute-a-command-multiple-times) you say (emphasis mine) > The same signature also allows you to conveniently and **efficiently** execute a command multiple...

Sometimes, especially when the list of columns in the select is dynamically generated, it'd be more convenient to provide a column to split after, instead of column to split on.

This change introduces an optional CancellationToken parameter to the QueryAsync method, enabling support for cancellation of asynchronous database queries. The modification ensures better resilience and control over long-running or potentially...

This is a support request really, and I know this isn't the correct project, but I assume issues over there are going to go unanswered... We use Dapper.Oracle quite extensively...

Description: Dapper currently has hardcoded values for cache eviction: `private const int COLLECT_PER_ITEMS = 1000, COLLECT_HIT_COUNT_MIN = 0;` These settings control how often Dapper clears its query cache and how...

PS: Sorry for the VB.NET :stuck_out_tongue: Imagine these classes: ``` Public Class EntityBase Public Property ColumnA As String Public Property ColumnB As String Public Class QueryEntity Inherits EntityBase Public Shadows...

deserialization

.InsertInto($"{_configuration["ZRO:tableName"]}") if i do this i get errors about the first parameter how can i use a variable name in this particular method InsertInto, basically applies also to the others.

Dapper 2.1.35 Dapper.Contrib 2.0.78 We have two pods running the same image in K8s that query a table and map to an object using Dapper. Both will work fine for...

bug
needs-triage

Hello. I'm beginner and don't know fuctionality of this great component. Can someone help me with reading data to object model ```c# public class Order { public int OrderId {...