Dapper
Dapper copied to clipboard
Dapper - a simple object mapper for .Net
While using QueryFirstOrDefaultAsync ,In a certain scenario where the outbound connection in Azure appservice is high , output of the query gives wrong result Code Sample : var orderDetail =...
The Dapper readme has no info on unit testing, and suprisingly there is not much tutorials online either. The two main unit test libraries I was able to find were:...
Enhance `Literal Tokens` capabilities, now we can use `Literal Tokens` as a suffix of table for `Table Sharding`. before: ```csharp connection.Query("select * from User_34 where Id= {=Id}", new { Id...
I have a table that has a jsonb column which I'd like to deserialize to a JObject (Newtonsoft.Json) or the equivalent API in System.Text.Json. I am following this old issue...
Try to deserialize enum via TypeHandler first (if exists) Closes #259
I'm running a query similar to the following: ``` csharp string sql = @"select * from table where table.token in (@tokens)"; using (var connection = connection_factory.OpenDbConnection()) { return connection .Query(sql,...
Hi, is it possible to use `DynamicParameters` with the Snowflake SQL? Example of the Snowflake query using variable: ``` set id = 2; SELECT * FROM NATION N WHERE N.N_NATIONKEY...
C# 9 records
Are there any plans to add support for records (added in C# 9/.NET 5), more specifically positional records?
It seems like Dapper uses the first value in a column to decide what type the rest of the values will have. If the first value is NULL, this fails...
Added ability to declare enum type handler. With this type handler you can save enums in varchar columns and read them as well. added unit tests