I have a model with uint? column, but I receive a "Arithmetic operation resulted in an overflow" exception for simple query:
connection.QuerySingleOrDefault<Test>("Select * from Test")
In the database this column is created with bigint
type.
I can't find information about what the dapper does not support unit types and mapping should work. Any suggestions?