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 documentation says that this works:
Patient.objects.filter(eav__weight=42.2)
While that is correct, this will not work:
Patient.objects.filter(foo=bar).filter(eav__weight=42.2)
Nor will this:
queryset = Patient.objects.filter(foo=bar) queryset = queryset.filter(eav__weight=42.2)
The EntityManager should somehow always return a wrapped function instead of the original.
EntityManager
The text was updated successfully, but these errors were encountered:
Does swapping the order help as a workaround?
Patient.objects.filter(eav__weight=42.2).filter(foo=bar)
Or are you demonstrating this as a symptom of a bigger issue?
Sorry, something went wrong.
No branches or pull requests
The documentation says that this works:
While that is correct, this will not work:
Nor will this:
The
EntityManager
should somehow always return a wrapped function instead of the original.The text was updated successfully, but these errors were encountered: