Miguel Roman
Results
2
comments of
Miguel Roman
I had a similar problem with Oracle, but I solved with a custom query parameter, see the issue DapperLib/Dapper#142
I solved in my project creating a custom query parameter, someting like this: ``` cs internal class OracleClobParameter : SqlMapper.ICustomQueryParameter { private readonly string value; public OracleClobParameter(string value) { this.value...