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

To support sql statements for which the target type does not have a property for every column returns by the sql statement. #2011

The constructor of `CustomPropertyTypeMap` accepts two parameters. The propertySelector parameter is of type` Func`. If I understand correctly this means that the function must always return a PropertyInfo. Returning `null`...

Hi, I've found that Dapper behaves differently when using plain classes or records (working on Oracle 12). When getting results from a command, like ```csharp return await connection.QueryAsync(query); ``` this...

Fix issue https://github.com/DapperLib/Dapper/issues/222: MultiMap does not return null object in left-outer-join if splitting on a surrogate key that is not a property on the target object.

Hi, when trying to use Dapper from inside a C# .Net 7 API Docker Container to a Sql Server 2022 Docker Container i get an error: `Cannot connect to SQL...

This may or may not be a bug but the behavior seemed interesting, so I thought I'd ask. I isolated this test case, where two identical query strings fill objects...

Hi there, I'm trying to use Dapper List Parameter with TypeHandler for Guid Management in Oracle ( represented as `RAW(16)` ) but it is not working as expected (Dapper version...

When calling a stored procedure, using QueryAsync, and the result returns no results, it still creates a SelectListItem with 1 item as an item with "NULL" in the value &...

Support F# anonymous types in query like ```fsharp let res = db.QuerySingle("select Tid=20, Name='fdsf', X='hfds', Y=15") ``` - The search for constructor fallback to search by names sorted, if not...

needs-info