-
-
Notifications
You must be signed in to change notification settings - Fork 1.4k
New issue
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
enum defined as byte can not be deserialized #33
Labels
Comments
I can reproduce the issue. Using Int64 gives a similar issue: public enum ColorType : Int64 {Blue = 0xFFFFF, ...} |
Possible fix: dirvo@22f70e8 |
xperiandri
pushed a commit
to xperiandri/sqlite-net
that referenced
this issue
Sep 12, 2015
Expose `GetConnection()` to subtypes
This bug still exists in 1.0.11 |
Still exists in 1.3.3 |
Writing a test now... |
I added a test and it seems to be fixed now. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This is working:
public enum ColorType {Blue = 1, Red = 2, Green = 4, White = 8 }
This is NOT working:
public enum ColorType : byte {Blue = 1, Red = 2, Green = 4, White = 8 }
The text was updated successfully, but these errors were encountered: