Skip to content

Commit

Permalink
Added comments to existing methods
Browse files Browse the repository at this point in the history
Added two comments to describe FirstOrInit and FirstOrCreate methods.
  • Loading branch information
Saurabh-Thakre authored Jan 31, 2022
1 parent f19b84d commit 581a879
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion finisher_api.go
Original file line number Diff line number Diff line change
Expand Up @@ -255,7 +255,7 @@ func (tx *DB) assignInterfacesToValue(values ...interface{}) {
}
}
}

// FirstOrInit gets the first matched record or initialize a new instance with given conditions (only works with struct or map conditions)
func (db *DB) FirstOrInit(dest interface{}, conds ...interface{}) (tx *DB) {
queryTx := db.Limit(1).Order(clause.OrderByColumn{
Column: clause.Column{Table: clause.CurrentTable, Name: clause.PrimaryKey},
Expand All @@ -281,6 +281,7 @@ func (db *DB) FirstOrInit(dest interface{}, conds ...interface{}) (tx *DB) {
return
}

// FirstOrCreate gets the first matched record or create a new one with given conditions (only works with struct, map conditions)
func (db *DB) FirstOrCreate(dest interface{}, conds ...interface{}) (tx *DB) {
queryTx := db.Limit(1).Order(clause.OrderByColumn{
Column: clause.Column{Table: clause.CurrentTable, Name: clause.PrimaryKey},
Expand Down

0 comments on commit 581a879

Please sign in to comment.