Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Implement support for ENUM.
http://dev.mysql.com/doc/refman/5.7/en/enum.html
Required for #4 and PomeloFoundation/Pomelo.EntityFrameworkCore.MySql#36
The text was updated successfully, but these errors were encountered:
Does Connector/NET support SET or ENUM? I can't seem to find it. Let's keep the conversation here even though #71 is related.
SET
ENUM
Sorry, something went wrong.
I don't think it has specialised .NET types to wrap them, but does support deserializing them (both to string I think). I was just looking for the same level of basic support in this case.
string
875edda
ENUM column values are returned as strings by MySQL Server and will be exposed as strings by MySqlDataReader.GetValue.
MySqlDataReader.GetValue
bgrainger
No branches or pull requests
Implement support for ENUM.
http://dev.mysql.com/doc/refman/5.7/en/enum.html
Required for #4 and PomeloFoundation/Pomelo.EntityFrameworkCore.MySql#36
The text was updated successfully, but these errors were encountered: