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
SQLAlchemy recommends a new way of writing ORM queries, using select(): https://docs.sqlalchemy.org/en/14/changelog/migration_20.html Could you update this library to support it?
Currently, it triggers errors such as: 'Select' object has no attribute '_compile_state'
'Select' object has no attribute '_compile_state'
The text was updated successfully, but these errors were encountered:
facing same issue, AttributeError: 'Select' object has no attribute 'count'
AttributeError: 'Select' object has no attribute 'count'
Sorry, something went wrong.
As a new co-maintainer of this repo, I can say that we'd be happy to review a pull request. I don't have much time to work on this myself though.
@tomviner this should be fixed in #84
No branches or pull requests
SQLAlchemy recommends a new way of writing ORM queries, using select(): https://docs.sqlalchemy.org/en/14/changelog/migration_20.html
Could you update this library to support it?
Currently, it triggers errors such as:
'Select' object has no attribute '_compile_state'
The text was updated successfully, but these errors were encountered: