go-bongo / bongo

Go ODM for MongoDB
MIT License
487 stars 40 forks source link

How to Modify Element #22

Closed ahmagdy closed 7 years ago

ahmagdy commented 7 years ago

Hi now in bongo there is 3 operations insert , delete and find what if i need to modify exciting element what i should do

securingsincity commented 7 years ago

@Ahmad-Magdy Bongo supports updates as well. If you save a document and it has an Id defined it will do an update and not an insert.

LennyPenny commented 6 years ago

There might be cases where I would only want to do an update but not an insert if the document id doesn't exist. If the documentid doesn't exist I would want to have an error returned.

Is there a way to do this with bongo without using the raw mgo session?