I have a situation where I need to treat TINYINT in a MySQL database as a numeric value and not as TRUE / FALSE.
From what I understand, the MySQL .Net Connector use to map TINYINT as Byte. Unfortunately for me it seems that this is no longer the case and TINYINT is now mapped to Boolean. I need to may TINYINT to Byte like it used to be. I know that the connection string parameter 'Treat Tiny As Boolean=False' is supposed to handle this problem. For some reason this doesn't seem to work when using the Entity Framework. Any ideas?