I'm using dapper and am having issues with casting a string value from the db to an int. Has anyone overriden the TypeMap to allow for this?
Any suggestions would be great.
|
feedback
|
|
Dapper is picky about the types it maps. This protects you from all sorts of nasty errors that pop up later. For example, your db could return:
There is no clear course of action for mapping this kind of stuff to an That said, there are two strategies you can follow with dapper that do not require changes to IL generation. Option 1: Shadow property
Option 2, cast in SQL
There is no clean way to extend the mapping functionality in Dapper, if you do so you will be stuck needing to merge any fixes we add over time to your local copy. | |||
feedback
|