Posts by Vitor De Mario • 101 points
1 post
-
0
votes2
answers2228
viewsA: Update in array in Mongodb
You can use $set. Example: db.bla.update({"_id":"55dcb404478e7227203d3a65"}, { "$set": { "Pessoas.0.Habilidades.1.Macetes": [ { "HabilidadeId": "idnovo", "Nome": "Pular" } ] } })…