Generally we can use QObject.column.in(String[]) to find rows that specific column value in a string list. But how can we filter if column value exists in a large string?
Something like QObject.column.in(String)
Generally we can use QObject.column.in(String[]) to find rows that specific column value in a string list. But how can we filter if column value exists in a large string?
Something like QObject.column.in(String)
Copyright © 2021 Jogjafile Inc.
You can use
http://querydsl.com/static/querydsl/4.1.3/apidocs/com/querydsl/core/types/dsl/StringExpression.html#containsIgnoreCase-java.lang.String-
Example:
QObject.column.containsIgnoreCase(yourString)