Closed vincent-paing closed 5 years ago
The updatable column public Boolean isSomething
is nullable (since there is missing @NonNull/@NotNull annotation). To keep things very explicit and clear SqliteMagic is trying to make API consumers aware of nullability. Therefore there is a method setNullable
which will work in your case.
Here's the reproducible code
And updating
isSomething
column with following codeThis should translate to
However, the code does not compile because it cannot resolve method, since it does not know the method where you pass the value instead of Column..etc.
Tested on version 0.23.1