Does anyone have a complete table of MySQL datatypes mapping to .Net (CLR) datatypes. There are question on the same topic on StackOverflow but the information given is inconsistent rather useless.
3 Answers
Here is a mapping to Java types, it is easy to convert this to .NET mapping...
http://dev.mysql.com/doc/connector-j/en/connector-j-reference-type-conversions.html
Comments
I found this mapping, seems to be from 2013 (blogspot.dk)

And I can add that MySql tinyint(1) is mapped automatically to boolean in .Net