Support relationship traversal and any/all
in SQLAlchemy Core
#32
Labels
enhancement
New feature or request
any/all
in SQLAlchemy Core
#32
Basic support for SQLAlchemy Core was added in v0.7.0, but this does not include relationship traversal (e.g.
author/blogposts
) or collection lambdablogposts/any(b: b/title eq 'test')
functionality.To implement this we need a way to find the related table and its target column. In the ORM visitor, this is easy because mapped models usually include a
relationship
attribute with all necessary details. CoreTable
objects seem to lack such a linking property.All integration tests for this are already present, but currently marked
xfail
.The text was updated successfully, but these errors were encountered: