Dapper
Dapper copied to clipboard
Dapper - a simple object mapper for .Net
I would like to contribute in the `/tests` directory of the Dapper project and add `icr.io/db2_community/db2` service to the `docker-compose.yml` to start building out db2 test cases. I love using...
In the following case, option `SqlMapper.Settings.ApplyNullValues` is not respected, `null`-values are not assigned: I have a DTO (`PersonDto`) with some properties (`Id`, `GivenName`, `MiddleName`, `Surname`, `Picture`). The `Id` is of...
1. Create unbuffered `CommandDefinition` with flags `CommandFlags.None`. 2. Call `QueryAsync(command)` https://github.com/DapperLib/Dapper/blob/52160dc44699ec7eb5ad57d0dddc6ded4662fcb9/Dapper/SqlMapper.Async.cs#L940
Hi, I noticed splitOn can't handle NULL value. for example: if I use sth like `select c.*, c1.* from ...`, when `xxx_id` is the first column of table `c1` and...
IN clauses only work with this turned off. Allows people to choose between IN clauses for Postgres or support for arrays (int[], long[])
Hello, I'm encountering an intermittent issue with Dapper. Occasionally, I receive the error message **'@ParameterNames1 is not a parameter for procedure....'** When I stop and restart the application using 'dotnet...
I'm using this method signature for QueryAsync: public static Task QueryAsync(this IDbConnection cnn, string sql, Type[] types, Func map, object? param = null, IDbTransaction? transaction = null, bool buffered =...
I can first understand what is actually different between MySQL and MariaDB, but it doesn't hurt to test. Things like https://stackoverflow.com/questions/78627602/dapper-with-mariadb-stored-procedure-with-uuid-type-parameters show that there is a UUID type in MariaDB...
I think, there should be a special hint for Oracle under https://github.com/DapperLib/Dapper?tab=readme-ov-file#limitations-and-caveats to use `:` instead of `@` as parameter placeholder. I fell over the issue and it costed me...
We're currently facing issues with querying multiple results and reading each of them unbuffered. After investigating the [Dapper source code](https://github.com/DapperLib/Dapper/blob/52160dc44699ec7eb5ad57d0dddc6ded4662fcb9/Dapper/SqlMapper.GridReader.Async.cs#L268) I think we may have some exception that is being...