go-gorm / playground

GORM Playground (Please Create PR for this project to report issues)
MIT License
89 stars 681 forks source link

commit #723

Open zchenyu opened 5 months ago

zchenyu commented 5 months ago

According to https://gorm.io/docs/query.html#Retrieving-objects-with-primary-key

This should work:

var result User
db.Model(User{ID: 10}).First(&result)
// SELECT * FROM users WHERE id = 10;