Dapper
Dapper copied to clipboard
Dapper - a simple object mapper for .Net
How to pass array of records postgres type as a parameter from c#? I have tried to send it the same way it is received from query result - as...
Please, take a look at this PR. I add Nextorm lib and make benchmark project to support net8.0. Also fix sql server connection issue for EF core.
This implements a setting to allow opting-in to Dapper's list expansion even for databases that do not otherwise require it, in order to ensure consistent handling of lists for SQL...
Calling `command.Parameters.Contains(name)` for every parameter is an n-squared algorithm for many database implementations and can cause performance degredation when there is a large number of parameters. This fixes that performance...
When using a large number of query parameters, Dapper appears to take an extremely long time to add the parameters to the command before executing it. It took ~40 seconds...
This issue I have also posted here: https://stackoverflow.com/questions/77902278/why-does-oracle-sql-dapper-not-recognize-these-numbers Writing a custom Oracle SQL query in .NET using Dapper for dynamic parameters. The field that is giving me an issue is...
Any tips on adding Custom Type Handler for List to catch null or empty lists and throw exception. Getting lot of timeouts because of these empty lists. I tried doing...
Extract type judgment to private method
Extract type judgment to private method
There's some level of setup I'm missing to be able to run the tests (futzing around with that right now). But I think this documents my theory correctly so I...