Dapper
Dapper copied to clipboard
Dapper - a simple object mapper for .Net
I have function in ORACLE package Supplier_API: FUNCTION Get(supplier_id_ IN VARCHAR2) RETURN Public_Rec; TYPE Public_Rec IS RECORD (supplier_id VARCHAR2(80), "rowid" ROWID, rowversion DATE, rowkey VARCHAR2(200), rowtype VARCHAR2(80), name VARCHAR2(400), creation_date...
In my case i`m executed dynamic generated queries uses Dapper. In production my service uses a lot of memory (~9 GB). I took a memory dump of the process and...
I want to wrap my value inside an Option, the code is really simple. But when value is null OptionTypeHandler.Parse() isn't called. So my Option instead of being None is...
Hello, Is there a plan to support the new [SqlRetryLogic ](https://learn.microsoft.com/en-us/sql/connect/ado-net/configurable-retry-logic-sqlclient-introduction?view=sql-server-ver16)in dapper? A way to pass the retry logic to the SqlCommand object? Thanks
Hello from [GitHub Security Lab](https://securitylab.github.com/)! Your repository is critical to the security of the Open Source Software (OSS) ecosystem, and as part of our mission to make OSS safer, we...
Column type is BOOLEAN. SQLiteConnection class return value "True" but Dapper cannot convert it to a bool value. Please fix this.
Let's say I have a value object (to avoid primitive obsession) and I want to create a custom type handler that internally just delegates to the appropriate type handler for...
VB.Net Windows desktop application, Dapper 2.0.123 Dapper.Contrib 2.0.78 Even though the TypeHandler is registered on app startup. Cx.Get(of T) - Fails saying unable to parse the column containing the UDT...
I use `datetime2` in SqlServer to store datetimes with increased accuracy, because the legacy `datetime` gets rounded on nanoseconds (note also that Microsoft themselves [recommend](http://technet.microsoft.com/en-us/library/ms187819.aspx) the replacement) And to get...