Rob
Rob
Fix for explicit implementation of the ICustomQueryParameter with Unit Test.
Added support for loosely coupled custom query parameters.
With the `ICustomQueryParameter` we are able to create custom datatypes and control how the ADO.Net parameter is created and configured, this allows for a seamless coding experience. I would like...
When a custom parameter explicitly implements the `ICustomQueryParameter` interface Dapper throws and `ArgumentNullException`. See the following example (modified from an existing Unit Test) ```C# private class IntExplicitCustomParam : SqlMapper.ICustomQueryParameter {...