We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
The generated database class has Type mismatch errors when creating mappers using the constructor. This due to incorrect order of arguments.
Type mismatch
The error looks like this:
Type mismatch. Required: ColumnAdapter<Int, Long> Found: ColumnAdapter<Long, String>
And doesn't allow a successful compilation
Use the same order to generate Mapper class and Mapper constructor calls inside database class
The text was updated successfully, but these errors were encountered:
tamimattafi
Successfully merging a pull request may close this issue.
Problem
The generated database class has
Type mismatch
errors when creating mappers using the constructor. This due to incorrect order of arguments.The error looks like this:
And doesn't allow a successful compilation
Solution
Use the same order to generate Mapper class and Mapper constructor calls inside database class
The text was updated successfully, but these errors were encountered: