Dapper
Dapper copied to clipboard
Dapper - a simple object mapper for .Net
I annotated the public API in https://github.com/StackExchange/Dapper/pull/1392I for fun and in case it could be helpful. I don't have a use case for this feature as a Dapper user right...
There have been a couple of issues around nullable reference types [1](https://github.com/DapperLib/Dapper/issues/1393) [2](https://github.com/DapperLib/Dapper/issues/1714). I was wondering what people think about the behavior of the ApplyNullValues setting in the context of...
Fix typo. It should read as ".NET".
Does this work with the snowflake dotnet core connector? https://github.com/snowflakedb/snowflake-connector-net
.NET 6 will introduce the DateOnly and TimeOnly structs, these are good mapping candidates for SQL Server's Date and Time types. There is an open issue in the .NET SqlClient...
This adds support for Type mapping, typically resolving the issue #1104 by allowing a requested type to be mapped to another type. The core of this PR is rather light...
This fixes a case sensitive issues. Instead of using the FactUnlessCaseSensitiveDatabase attribute, I think it's better to fix the test itself.
Fix for explicit implementation of the ICustomQueryParameter with Unit Test.
This change resolves #1754 It allows a developer to implement an additional interface (INullTypeHandler) on a custom type handler if they want to be able to handle the parsing of...