Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save dumindu/067d41f9ba468a9a6680c91d4bdbd003 to your computer and use it in GitHub Desktop.
Save dumindu/067d41f9ba468a9a6680c91d4bdbd003 to your computer and use it in GitHub Desktop.
func UpdateBook(db *gorm.DB, book *model.Book) error {
if err := db.First(&model.Book{}, book.ID).Update(book).Error; err != nil {
return err
}
return nil
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment