Skip to content

Commit

Permalink
Update README.md.
Browse files Browse the repository at this point in the history
  • Loading branch information
gk-brown committed Sep 3, 2024
1 parent 394e5cf commit 83ab353
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -1022,7 +1022,7 @@ var queryBuilder = QueryBuilder.select(Actor.class)
.filterByForeignKey(FilmActor.class, Film.class, "filmID");
```

Primary and foreign key annotations associated with the `Actor`, `Film`, and `FilmActor` types are used to construct the "join" clause. The resulting query is functionally equivalent to the following:
Primary and foreign key annotations associated with the `Actor`, `Film`, and `FilmActor` types are used to construct the "join" clause. The resulting query is functionally equivalent to the following SQL:

```sql
select actor.* from actor
Expand Down

0 comments on commit 83ab353

Please sign in to comment.