Skip to content

Commit

Permalink
add tutorial 5
Browse files Browse the repository at this point in the history
  • Loading branch information
FrancoLiberali committed Aug 29, 2023
1 parent fd81e9d commit 536abb5
Show file tree
Hide file tree
Showing 2 changed files with 47 additions and 1 deletion.
5 changes: 4 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,7 @@ tutorial_3:
go run -tags=tutorial_3 .

tutorial_4:
go run -tags=tutorial_4 .
go run -tags=tutorial_4 .

tutorial_5:
go run -tags=tutorial_5 .
43 changes: 43 additions & 0 deletions tutorial_5.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
//go:build tutorial_5
// +build tutorial_5

package main

import (
"fmt"
"log"

"github.com/ditrit/badaas-orm-tutorial/conditions"
"github.com/ditrit/badaas-orm-tutorial/models"
"github.com/ditrit/badaas/orm"
"go.uber.org/fx"
"gorm.io/gorm"
)

// Target: get all cities whose name is 'Paris' and that are the capital of their country
func tutorial(db *gorm.DB, shutdowner fx.Shutdowner) {
cities, err := orm.NewQuery[models.City](
db,
conditions.City.NameIs().Eq("Paris"),
conditions.City.Country(
conditions.Country.CapitalIdIs().Dynamic().Eq(conditions.City.ID),
),
).Find()

// SQL executed:
// SELECT cities.* FROM cities
// INNER JOIN countries Country ON
// Country.id = cities.country_id AND Country.capital_id = cities.id AND Country.deleted_at IS NULL
// WHERE cities.name = "Paris" AND cities.deleted_at IS NULL

if err != nil {
log.Panicln(err)
}

log.Println("Cities named 'Paris' that are the capital of their country are:")
for i, city := range cities {
fmt.Printf("\t%v: %+v\n", i+1, city)
}

shutdowner.Shutdown()
}

0 comments on commit 536abb5

Please sign in to comment.