is it possible to support filter_by check in sqlalchemy
Open
sqlalchemy
- Dominant language
- Rust
- Stars
- 7k
- Forks
- 516
- PR merge metrics
- No merged PRs in 30d
Description
background:
In SQLAlchemy, two styles:
1
```py
select(Table).where(Table.col == other)
```
2
```py
select(Table).filter_by(col = other)
```
But in 2, col is Any, so no check here.
Contributor guide
Assessment
This issue has not been assessed yet.