I have a MySQL database with a bit field to hold a boolean value. In SqlServer, these normally come through on the Entity as boolean values. With MySQL, it comes through as an SByte.
I know I can use value converters to convert it to a bool, but is there a better way to do this so it's a bool on the Entity?
Greg