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
There is a json array field in mysql table, which name is "permissions",I can't use Criteria.where("permissions").in(value) to get results.
Criteria.where("permissions").in(value)
I also need dynamic SQL,so use @Modifying @Query("UPDATE person SET firstname = :firstname where lastname = :lastname") cannot satisfied my problem.
@Modifying @Query("UPDATE person SET firstname = :firstname where lastname = :lastname")
Is there any way to have both dynamic SQL ability and JSON_CONTAINS function support when I use spring-data-r2dbc?
The text was updated successfully, but these errors were encountered:
Related: spring-projects/spring-data-relational#509
Sorry, something went wrong.
No branches or pull requests
There is a json array field in mysql table, which name is "permissions",I can't use
Criteria.where("permissions").in(value)
to get results.
I also need dynamic SQL,so use
@Modifying @Query("UPDATE person SET firstname = :firstname where lastname = :lastname")
cannot satisfied my problem.
Is there any way to have both dynamic SQL ability and JSON_CONTAINS function support when I use spring-data-r2dbc?
The text was updated successfully, but these errors were encountered: