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
With
QList<Variant> numbers = {4, 8, 15, 16, 23, 42}; auto s = QDjangoWhere("number", QDjangoWhere::IsIn, numbers).toString();
s is QDjangoWhere(key="number", operation="IsIn", value="", negate=false) without the numbers (value is empty).
s
QDjangoWhere(key="number", operation="IsIn", value="", negate=false)
Note: My real problem is to make something similar to QDjangoWhere::sql or a serialize of a QDjangoWhere and I tried to use the toString() for that.
QDjangoWhere::sql
serialize
QDjangoWhere
toString()
The text was updated successfully, but these errors were encountered:
No branches or pull requests
With
s
isQDjangoWhere(key="number", operation="IsIn", value="", negate=false)
without the numbers (value is empty).
Note: My real problem is to make something similar to
QDjangoWhere::sql
or aserialize
of aQDjangoWhere
and I tried to use thetoString()
for that.The text was updated successfully, but these errors were encountered: