Skip to content

Commit

Permalink
Fix docs typo for alias relationships
Browse files Browse the repository at this point in the history
  • Loading branch information
cycledriver committed Feb 25, 2024
1 parent 9606fac commit daf8e90
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ JOIN address AS work_address_alias
The aliases we create are `home_address_alias` and `work_address_alias`. You can think of them
as a view to the same underlying `address` table.

We can this with **SQLModel** and **SQLAlchemy** using `sqlalchemy.orm.aliased`
We can do this with **SQLModel** and **SQLAlchemy** using `sqlalchemy.orm.aliased`
and a couple of extra bits of info in our **SQLModel** relationship definition and join statements.

## The Relationships
Expand Down

0 comments on commit daf8e90

Please sign in to comment.